Auto commit

This commit is contained in:
smallkun 2025-02-21 08:21:06 +08:00
parent dfcc6d7c50
commit e3beb59bcf
2 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,32 @@
/*
+
for(i=0;i<1000;i++){
}
i=0;
while(i<1000){
i++;
}
&& || !
1&&2
1 2
*/
#include <stdio.h>
int main(){
int i;
for(i=0;i<1000;i++){
if(i%2==1 && i%3==2 && i%5==4 && i%6==5 && i%7==0){
printf("台阶数为%d\n", i);
break;
}
}
return 0;
}

View File

@ -185,7 +185,38 @@ int main(){
![image-20250220230945704](https://yp.smallkun.cn/markdown/image-20250220230945704.png!compress) ![image-20250220230945704](https://yp.smallkun.cn/markdown/image-20250220230945704.png!compress)
```c ```c
/*
暴力求解+枚举每一个台阶
for(i=0;i<1000;i++){
}
i=0;
while(i<1000){
i++;
}
&& || !
表达式1&&表达式2
左右都为真才为真
短路运算 表达式1为假 表达式2直接不运算 直接为假
*/
#include <stdio.h>
int main(){
int i;
for(i=0;i<1000;i++){
if(i%2==1 && i%3==2 && i%5==4 && i%6==5 && i%7==0){
printf("台阶数为%d\n", i);
break;
}
}
return 0;
}
``` ```
### 循环结构-3 ### 循环结构-3