运行 ❯
获取自己的
网站
×
更改方向
更改主题,深色/亮色
转到 Spaces
#include <stdio.h> #include <stdlib.h> #include <time.h> int main() { // Initialize the randomizer using the current timestamp as a seed // (The time() function is provided by the <time.h> header file) srand(time(NULL)); // Generate random numbers for(int i = 0; i < 10; i++) { int num = rand() % 100 + 1; printf("%d ", num); } return 0; }
9 27 7 11 80 37 92 32 60 41