[ZJ]a009: 解碼器

題目:
http://zerojudge.tw/ShowProblem?problemid=a009
--------------------------------------------------------------------------------------------------------------------------

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define N 200
int main()
{
int n;
char s[200];
memset(s,' ',sizeof(s));
while(gets(s))
{
n=strlen(s);
for(int i=0;i<n;i++)
printf("%c",s[i]+'*'-'1');
printf("\n");
}
return 0;
}

留言

這個網誌中的熱門文章

[ZJ]b513: 判斷質數-商競103

[ZJ]d212: 東東爬階梯