2025-03-20

This commit is contained in:
smallkun 2025-03-20 10:45:11 +08:00
parent 5e39adead8
commit cbf371e29d
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#include <stdio.h>
#define CHANGE 0 //1代表打印密文 0明文
//! Ctrl + .注释
int main(){
char str[100], i=0;
scanf("%s", str);
#if CHANGE
while(str[i] != '\0'){
if(str[i] >= 'a' && str[i] <= 'y' || str[i] >= 'A' && str[i] <= 'Y' ){
str[i]++;
}else{
str[i]-=25;
}
i++;
}
#endif
puts(str);
return 0;
}

View File

@ -906,7 +906,29 @@ int main(){
![image-20250227231325297](https://yp.smallkun.cn/markdown/image-20250227231325297.png!compress)
```c
#include <stdio.h>
#define CHANGE 0 //1代表打印密文 0明文
//! Ctrl + .注释
int main(){
char str[100], i=0;
scanf("%s", str);
#if CHANGE
while(str[i] != '\0'){
if(str[i] >= 'a' && str[i] <= 'y' || str[i] >= 'A' && str[i] <= 'Y' ){
str[i]++;
}else{
str[i]-=25;
}
i++;
}
#endif
puts(str);
return 0;
}
```
## 结构体