文章列表C工具函数On this page工具函数范围随机数整数int randInt(int min, int max){ int r = rand() & (max - min +1) + min; return r}