From 48efc89c495b18b75ddc48b822b53d2f41794ae7 Mon Sep 17 00:00:00 2001 From: Kirito <1362050620@qq.com> Date: Tue, 28 Jun 2016 14:30:02 +0800 Subject: [PATCH] Create 1773.c --- QUSTOJ/1773.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 QUSTOJ/1773.c diff --git a/QUSTOJ/1773.c b/QUSTOJ/1773.c new file mode 100644 index 0000000..af51d1b --- /dev/null +++ b/QUSTOJ/1773.c @@ -0,0 +1,15 @@ +#include +#include +#include +char a[1024]; +int main() +{ + gets(a); + int L=strlen(a); + for(int i=L-1;i>=0;i--) + { + printf("%c",a[i]); + } + printf("\n"); + return 0; +}