Auto commit

This commit is contained in:
2025-02-28 09:15:39 +08:00
parent 0b308fc718
commit dcf8569b07
2 changed files with 35 additions and 2 deletions
@@ -0,0 +1,17 @@
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
int main(){
int num[10], i;
srand((unsigned)time(NULL));
for(i=0;i<10;i++){
num[i] = rand()%101;
printf("%d ", num[i]);
}
printf("\n");
return 0;
}