1037: 字符逆序
1.描述
将一个字符串str的内容颠倒过来,并输出。str的长度不超过100个字符。
输入
输入包括一行。 第一行输入的字符串。
输出
输出转换好的逆序字符串。
样例输入
I am a student
样例输出
tneduts a ma I
2.代码
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{ int x,i;
char a[100];
gets(a);
x=strlen(a);
for(i=x-1;i>=0;i-- )
printf("%c",a[i]);
return 0;
}