458 - The Decoder

来源:互联网 发布:淘宝刷手机单流程视频 编辑:程序博客网 时间:2024/06/07 04:48
#include <iostream>#include <cstring>#include <cstdio>using namespace std;int main(){    char str;    while(scanf("%c",&str)!=EOF)    {        if(str=='\n')        cout<<"\n";        else printf("%c",str-7);    }    return 0;}

原创粉丝点击