Auto commit

This commit is contained in:
smallkun 2025-02-27 20:06:15 +08:00
parent 3a41de0e49
commit ae9af0c5da
4 changed files with 100 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#include <stdio.h>
int main(){
int x;
while(1){
scanf("%d", &x);
if(x == 0){
break;
}
printf("%d:%s\n", x, (x%5==0&&x%7==0?"Yes":"No"));
}
return 0;
}

View File

@ -0,0 +1,17 @@
#include <stdio.h>
int main(){
int i, j, k;
for(i=0;i<=3;i++){
for(j=1;j<=5;j++){
for(k=0;k<=6;k++){
if(i+j+k==8){
printf("ºì:%d °×:%d ºÚ:%d\n", i, j, k);
}
}
}
}
return 0;
}

View File

@ -0,0 +1,19 @@
#include <stdio.h>
int main(){
int num, n=2, first = 1;
scanf("%d", &num);
printf("%d=",num);
while(num > 1){
if(num%n==0){
first?printf("%d", n):printf("*%d", n);
first=0;
num/=n;
}else{
n++;
}
}
return 0;
}

View File

@ -361,6 +361,23 @@ int main(){
![image-20250220231027969](https://yp.smallkun.cn/markdown/image-20250220231027969.png!compress)
```c
#include <stdio.h>
int main(){
int i, j, k;
for(i=0;i<=3;i++){
for(j=1;j<=5;j++){
for(k=0;k<=6;k++){
if(i+j+k==8){
printf("红:%d 白:%d 黑:%d\n", i, j, k);
}
}
}
}
return 0;
}
```
### 循环结构-9
@ -368,6 +385,25 @@ int main(){
![image-20250220231034218](https://yp.smallkun.cn/markdown/image-20250220231034218.png!compress)
```c
#include <stdio.h>
int main(){
int num, n=2, first = 1;
scanf("%d", &num);
printf("%d=",num);
while(num > 1){
if(num%n==0){
first?printf("%d", n):printf("*%d", n);
first=0;
num/=n;
}else{
n++;
}
}
return 0;
}
```
### 循环结构-10
@ -375,6 +411,20 @@ int main(){
![image-20250220231039716](https://yp.smallkun.cn/markdown/image-20250220231039716.png!compress)
```c
#include <stdio.h>
int main(){
int x;
while(1){
scanf("%d", &x);
if(x == 0){
break;
}
printf("%d:%s\n", x, (x%5==0&&x%7==0?"Yes":"No"));
}
return 0;
}
```
---