1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00
202401-programming-assignments/【实践课内】14.指针2/7-1 单词翻转.md

36 lines
983 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 7-1 单词翻转
从键盘输入一个字符串包含很多个单词。每个单词之间以1个或多个空格隔开。要求翻转每个单词但是单词在句子中的顺序不变。注意行前和行后可能有多个空格。
### 输入格式:
一个字符串包含很多个单词。每个单词之间以1个或多个空格隔开。要求翻转每个单词但是单词在句子中的顺序不变。注意行前和行后可能有多个空格。字符串总长度不超过1000单词数不超过50每个单词不超过20个字母。测试数据保证输入的字符只含英文字母和空格。
### 输出格式:
输出翻转后的字符串。每个单词之后输出一个空格。注意行前不能有多余的空格。行末只能有1个空格。
### 输入样例1:
```in
olleH dlroW
```
### 输出样例1:
```out
Hello World
```
### 输入样例2:
```in
I ma a tneduts
```
### 输出样例2:
```out
I am a student
```