首页 > 其他 > 详细

HDU 1048 - The Hardest Problem Ever

时间:2016-05-03 22:07:50      阅读:99      评论:0      收藏:0      [点我收藏+]

让你改一改字符

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 using namespace std;
 5 char s[105];
 6 const char list[]={V,W,X,Y,Z,A,B,C,D,E,F,G
 7                     ,H,I,J,K,L,M,N,O,P,Q,R,S
 8                     ,T,U};
 9 int main()
10 {
11     while(gets(s))
12     {
13         if(strcmp(s,"ENDOFINPUT")==0) break;
14         while(gets(s))
15         {
16             if(strcmp(s,"END")==0) break;
17             for(int i=0;s[i]!=\0;i++)
18             {
19                 if(s[i]<=Z&&s[i]>=A) cout<<list[s[i]-A];
20                 else cout<<s[i];
21             }
22             cout<<endl;
23         }
24     }
25 } 

 

HDU 1048 - The Hardest Problem Ever

原文:http://www.cnblogs.com/nicetomeetu/p/5456627.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!