解题思路:
注意事项:本来我刚开是用gets(a)的;能输出正确结果但是提交不正确;然后改用scanf("%s",a);
参考代码:
#include<stdio.h>
#include<string.h>
int main()
{
char a[1000];
int i,j,k,d;
while (scanf("%s",a)!=EOF)
{
if (strcmp(a,"END")==0)
return 0;
d = strlen(a);
for (i=0;i<d;i++)
{
if (a[i]=='A'||a[i]=='W'||a[i]=='F')
{
a[i] = 'I';
}
else if (a[i]=='C')
{
a[i] = 'L';
}
else if (a[i]=='M')
{
a[i] = 'o';
}
else if (a[i]=='S')
{
a[i] = 'v';
}
else if (a[i]=='D'||a[i]=='P'||a[i]=='B')
{
a[i] = 'e';
}
else if (a[i]=='L')
{
a[i] = 'Y';
}
else if (a[i]=='X')
{
a[i] = 'u';
}
}
puts(a);
}
return 0;
}
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:628 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:658 |
程序员的表白 (C语言代码)浏览:706 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:631 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:1110 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
C语言程序设计教程(第三版)课后习题9.2 (C语言代码)浏览:573 |
用筛法求之N内的素数。 (C语言代码)浏览:595 |
大神老白 (C语言代码)浏览:637 |
震宇大神的杀毒软件 (C语言代码)浏览:1162 |