UVA 458-The Decoder

来源:互联网 发布:edius for mac 编辑:程序博客网 时间:2024/05/17 06:10
#include<stdio.h> #include<string.h> int main() {     int i,n;     char str[100000];     while(gets(str)!=NULL)     {         n=strlen(str);         for(i=0;i<n;i++)         {             printf("%c",str[i]-7);        }         printf("\n");     }     return 0; }

0 0
原创粉丝点击