实验7-3-1 字符串逆序(15 分)

实验7-3-1 字符串逆序(15 分)

输入一个字符串,对该字符串进行逆序,输出逆序后的字符串。

输入格式:

输入在一行中给出一个不超过80个字符长度的、以回车结束的非空字符串。

输出格式:

在一行中输出逆序后的字符串。

输入样例:

1
Hello World!

输出样例:

1
!dlroW olleH
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include <string.h>

int main()
{
char str[81];
int i = 0;
int c;

while((c=getchar()) != '\n'){// 记录字符串
str[i] = (char) c;
i++;
}

i--;
for(;i>=0;i--){
printf("%c", str[i]);
}
}
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×