From 3a84d2d28c380822b46fb4bfe4cacababa418ed8 Mon Sep 17 00:00:00 2001 From: KiritoTRw <3021577574@qq.com> Date: Sun, 22 May 2016 23:02:36 +0800 Subject: [PATCH] Create 1359.c --- QUSTOJ/1359.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 QUSTOJ/1359.c diff --git a/QUSTOJ/1359.c b/QUSTOJ/1359.c new file mode 100644 index 0000000..6971d39 --- /dev/null +++ b/QUSTOJ/1359.c @@ -0,0 +1,8 @@ +#include +int main() +{ + int inc; + scanf("%d",&inc); + printf("%d %d %d %d \n",inc/1000,(inc%1000)/100,(inc%100)/10,inc%10); + return 0; +}