1 #include <stdio.h> 2 #include <time.h> 3 #include <stdlib.h> 4 5 #define MAX 100 //随机数范围上限 6 #define MIN 10 //随机数范围下限 7 8 int main() 9 { 10 int num,i; 11 srand( time(NULL) ); //取系统时间做随机数种子 12 num=rand()%(MAX-MIN+1)+MIN; //rand%(MAX-MIN+1)+MIN 13 printf("num=%d\n",num); 14 return 0; 15 }
时间: 2024-10-10 00:35:28