mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1758.c
This commit is contained in:
parent
cb2c8ec38d
commit
c22d938792
16
QUSTOJ/1758.c
Normal file
16
QUSTOJ/1758.c
Normal 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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user