Create 1773.c

pull/22/head
Kirigaya Kazuto 2016-06-28 14:30:02 +08:00 committed by GitHub
parent 641ffa62f2
commit 48efc89c49
1 changed files with 15 additions and 0 deletions

15
QUSTOJ/1773.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
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;
}