Sunday, August 17, 2014

uva : 458 - The Decoder

#include <stdio.h>
int main()
{
char ch;
while (scanf("%c", &ch)==1)
    if (ch == '\n') printf("\n");
    else printf("%c",ch-7);
return 0;
}

No comments:

Post a Comment