From 06f978520b94d482a6fbe878499af17dd06d0cd4 Mon Sep 17 00:00:00 2001 From: Kirito <1362050620@qq.com> Date: Sat, 21 May 2016 12:40:59 +0800 Subject: [PATCH] Create 1735.c --- QUSTOJ/1735.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 QUSTOJ/1735.c diff --git a/QUSTOJ/1735.c b/QUSTOJ/1735.c new file mode 100644 index 0000000..9449f9e --- /dev/null +++ b/QUSTOJ/1735.c @@ -0,0 +1,34 @@ +#include +#include +#include + +/* +int main() +{ + int a; + scanf("%d",&a); + a=((a/1000)+5)%10+(((a/100)+5)%10)*100+(((a/10)+5)%10)*10+((a+5)%10)*1000; + printf("%d\n",a); + return 0; +} +//*/ +void swap(char* a,char* b) +{ + char tmp=*b; + *b=*a; + *a=tmp; +} +char buff[512]; +int main() +{ + scanf("%s",buff); + for(int i=0;i<4;i++) + { + buff[i]+=5; + if(buff[i]>'9') buff[i]-=10; + } + swap(&buff[0],&buff[3]); + swap(&buff[1],&buff[2]); + printf("%s\n",buff); + return 0; +}