#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int a, i;
srand((unsigned)time(NULL)); // 时间播种,每次运行程序产生一个种子,时间不同种子不同
//使用for循环生成10个随机数
for (i = 0; i < 10; i++) {
a = rand() % 101; // 随机数限制在0-100
printf("%d ", a);
}
return 0;
}
#include <stdlib.h>
#include <time.h>
int main() {
int a, i;
srand((unsigned)time(NULL)); // 时间播种,每次运行程序产生一个种子,时间不同种子不同
//使用for循环生成10个随机数
for (i = 0; i < 10; i++) {
a = rand() % 101; // 随机数限制在0-100
printf("%d ", a);
}
return 0;
}
126邮箱联系方式:no1xijin@126. com