2025-03-20
This commit is contained in:
parent
5e39adead8
commit
cbf371e29d
@ -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;
|
||||
}
|
@ -906,7 +906,29 @@ int main(){
|
||||
|
||||

|
||||
|
||||
```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;
|
||||
}
|
||||
```
|
||||
|
||||
## 结构体
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user