2025-03-20
This commit is contained in:
parent
cbf371e29d
commit
caa10b19b2
@ -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++;
|
||||||
|
@ -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++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user