2025-03-20

This commit is contained in:
smallkun 2025-03-20 10:47:49 +08:00
parent cbf371e29d
commit caa10b19b2
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ int main(){
while(str[i] != '\0'){ while(str[i] != '\0'){
if(str[i] >= 'a' && str[i] <= 'y' || str[i] >= 'A' && str[i] <= 'Y' ){ if(str[i] >= 'a' && str[i] <= 'y' || str[i] >= 'A' && str[i] <= 'Y' ){
str[i]++; str[i]++;
}else{ }else if(str[i] == 'z' || str[i] == 'Z'){
str[i]-=25; str[i]-=25;
} }
i++; i++;

View File

@ -918,7 +918,7 @@ int main(){
while(str[i] != '\0'){ while(str[i] != '\0'){
if(str[i] >= 'a' && str[i] <= 'y' || str[i] >= 'A' && str[i] <= 'Y' ){ if(str[i] >= 'a' && str[i] <= 'y' || str[i] >= 'A' && str[i] <= 'Y' ){
str[i]++; str[i]++;
}else{ }else if(str[i] == 'z' || str[i] == 'Z'){
str[i]-=25; str[i]-=25;
} }
i++; i++;