delete pics to save space
This commit is contained in:
11
1.1914.cpp
Normal file
11
1.1914.cpp
Normal file
@ -0,0 +1,11 @@
|
||||
#include<cstdio>
|
||||
#include<cstring>
|
||||
int n;
|
||||
char s[60];
|
||||
int main()
|
||||
{
|
||||
scanf("%d%s",&n,s);
|
||||
int len=strlen(s);
|
||||
for(int i=0;i<len;i++) putchar((s[i]-'a'+n)%26+'a');
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user