解题思路:
注意事项:
参考代码:#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
while(getline(cin,str))
{
if(str=="END")
break;
int n=str.size();
for(int i=0;i<n;i++)
{
char ch=str[i];
if(ch=='A'||ch=='W'||ch=='F')
str[i]='I';
else if(ch=='D'||ch=='P'||ch=='G'||ch=='B')
str[i]='e';
else if(ch=='C')
str[i]='L';
else if(ch=='M')
str[i]='o';
else if(ch=='S')
str[i]='v';
else if(ch=='L')
str[i]='Y';
else if(ch=='X')
str[i]='u';
}
cout<<str<<endl;
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:854 |
假币问题 (C语言代码)浏览:2658 |
C语言程序设计教程(第三版)课后习题3.7 (C++代码)浏览:1024 |
【回文数(二)】 (C语言代码)浏览:940 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:628 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:543 |
C语言训练-斐波纳契数列 (C语言代码)浏览:1272 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:702 |
拆分位数 (C语言代码)浏览:1361 |
WU-判定字符位置 (C++代码)浏览:1471 |