PTA|《C语言程序设计(第3版)》习题7-7 字符串替换 (15分)

题目

本题要求编写程序,将给定字符串中的大写英文字母按以下对应规则替换:
PTA|《C语言程序设计(第3版)》习题7-7 字符串替换 (15分)_第1张图片

输入格式:
输入在一行中给出一个不超过80个字符、并以回车结束的字符串。

输出格式:
输出在一行中给出替换完成后的字符串。

输入样例:

Only the 11 CAPItaL LeTtERS are replaced.

输出样例:

Lnly the 11 XZKRtaO OeGtVIH are replaced.

参考解答

#include
int main(){
    int i=0,j=0;
    char str[81]={0};

    gets(str);
    while(str[i]!='\0'){
        if(str[i]>='A'&&str[i]<='Z'){
            str[i]='Z'+'A'-str[i];
        }
        i++;
    }
    puts(str);
    return 0;
}

你可能感兴趣的:(PTA)