实验7-3-4 字符串替换(15 分)
本题要求编写程序,将给定字符串中的大写英文字母按以下对应规则替换:
原字母 |
对应字母 |
A |
Z |
B |
Y |
C |
X |
D |
W |
… |
… |
X |
C |
Y |
B |
Z |
A |
输入格式:
输入在一行中给出一个不超过80个字符、并以回车结束的字符串。
输出格式:
输出在一行中给出替换完成后的字符串。
输入样例:
1
| Only the 11 CAPItaL LeTtERS are replaced.
|
输出样例:
1
| Lnly the 11 XZKRtaO OeGtVIH are replaced.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| #include<stdio.h> int main(void) { int i=0; char str[80]; printf("Enter a string:"); while((str[i]=getchar())!='\n') i++; str[i]='\0'; for(i=0;str[i]!='\0';i++) { if(str[i]>='A'&&str[i]<='Z') str[i]=155-str[i]; } printf("After change:"); for(i=0;str[i]!='\0';i++) putchar(str[i]); printf("\n"); return 0; }
|