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