uva 458 The Decoder

#include<stdio.h>
int main(){
    char c;
    int j;
    while((c = getchar())!= EOF){
        if(c != '
'){
            putchar(c-7);
        }
        else
            putchar(c);
    }
    return 0;
}
原文地址:https://www.cnblogs.com/superxuezhazha/p/5285351.html