POJ 2141

时间:2024-07-14 10:07:38
 #include<iostream>
#include<stdio.h>
using namespace std; int main()
{
//freopen("1.txt","r",stdin);
char a[];
for(int i = ; i < ; i++)
{
cin>>a[i];
}
char c;
c = getchar();
while(){
c = getchar();
if(c == '\n')
break;
if(c != ' ')
{
if(c-'a' >= && c-'a' <= )
cout<<a[c-'a'];
else
cout<<char(a[c-'a'+] - );
}else{ cout<<c;
}
}
system("pause");
}

关注我的公众号,当然,如果你对Java, Scala, Python等技术经验,以及编程日记,感兴趣的话。

POJ 2141

技术网站地址: vmfor.com