uva 458 The Decoder

#include<stdio.h>
int main(){
    char c;
    int j;
    while((c = getchar())!= EOF){
        if(c != '\n'){
            putchar(c-7);
        }
        else
            putchar(c);
    }
    return 0;
}
posted @ 2016-03-16 21:50  超级学渣渣  阅读(283)  评论(0编辑  收藏  举报