Create 1758.c

pull/21/head^2
Kirigaya Kazuto 2016-06-11 19:32:54 +08:00 committed by GitHub
parent cb2c8ec38d
commit c22d938792
1 changed files with 16 additions and 0 deletions

16
QUSTOJ/1758.c Normal file
View File

@ -0,0 +1,16 @@
#include <stdio.h>
#include <stdlib.h>
char pool[1024];
int main()
{
int n;
scanf("%d%*c",&n);
gets(pool);
for(int i=n-1;i>=0;--i)
{
printf("%c",pool[i]);
}
return printf("\n"),0;
}