Auto commit

This commit is contained in:
smallkun 2025-02-21 09:51:15 +08:00
parent 88a9ab7957
commit 2b23eadf39
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#include <stdio.h>
int main(){
int month, total = 2, i;
scanf("%d", &month);
for(i=1;i<=month;i++){
if(i%3==0){
total *= 2;
}
printf("%d月:%d个数\n", i, total);
}
return 0;
}

View File

@ -338,6 +338,22 @@ int main(){
![image-20250220231022607](https://yp.smallkun.cn/markdown/image-20250220231022607.png!compress)
```c
#include <stdio.h>
int main(){
int month, total = 2, i;
scanf("%d", &month);
for(i=1;i<=month;i++){
if(i%3==0){
total *= 2;
}
printf("%d月:%d个数\n", i, total);
}
return 0;
}
```
### 循环结构-8