delete pics to save space
This commit is contained in:
11
history_source/信息学奥赛一本通/1.5.3.5.cpp
Normal file
11
history_source/信息学奥赛一本通/1.5.3.5.cpp
Normal file
@ -0,0 +1,11 @@
|
||||
#include<cstdio>
|
||||
#include<cstring>
|
||||
int main()
|
||||
{
|
||||
char s[110];
|
||||
gets(s);
|
||||
int len=strlen(s);
|
||||
for(int i=0;i<len;i++) printf("%c",s[i]+s[(i+1)%len]);
|
||||
printf("\n");
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user