Auto commit

This commit is contained in:
smallkun 2025-02-28 09:15:39 +08:00
parent 0b308fc718
commit dcf8569b07
2 changed files with 35 additions and 2 deletions

View File

@ -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;
}

View File

@ -540,13 +540,29 @@ int main(){
}
```
### 数组-4
![image-20250220231447834](https://yp.smallkun.cn/markdown/image-20250220231447834.png!compress)
```c
#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;
}
```
### 数组-5