Auto commit

This commit is contained in:
smallkun 2025-02-21 09:42:11 +08:00
parent aac550fd91
commit 88a9ab7957
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main(){
int i;
for(i=5;i<=100;i++){
if(i%5==0 || i%7==0){
printf("%d ", i);
}
}
return 0;
}

View File

@ -318,6 +318,19 @@ int main(){
![image-20250220231012110](https://yp.smallkun.cn/markdown/image-20250220231012110.png!compress)
```c
#include <stdio.h>
int main(){
int i;
for(i=5;i<=100;i++){
if(i%5==0 || i%7==0){
printf("%d ", i);
}
}
return 0;
}
```
### 循环结构-7