HustOJ - 1024
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HustOJ - 1024相关的知识,希望对你有一定的参考价值。
1 #include <iostream> 2 #include <string> 3 #include <vector> 4 using namespace std; 5 6 int main() 7 { 8 int n,i,j; 9 string s; 10 cin>>n; 11 12 for(i=1;i<=n;i++) 13 { 14 cin>>s; 15 cout<<"String #"<<i<<endl; 16 for (j=0;j!=s.size();j++) 17 { 18 if(s[j]<90 && s[j]>=65) 19 { 20 cout<<++s[j]; 21 } 22 if(s[j]==90) 23 { 24 cout<<‘A‘; 25 } 26 } 27 cout<<endl<<endl; 28 } 29 return 0; 30 }
ZOJ:1240
以上是关于HustOJ - 1024的主要内容,如果未能解决你的问题,请参考以下文章