杭电oj 1062 刷题笔记Text Reverse (gets/get/scanf)

该博客介绍了杭电oj 1062题目的解题思路,主要涉及如何反转输入的单词。文章通过示例解释了如何使用gets函数读取包含空格的字符串,并对比了gets、get和scanf的使用区别。博主提示要特别注意处理字符串结尾的空格和回车,并给出了代码实现。
摘要由CSDN通过智能技术生成

Text Reverse

Problem Description

Ignatius likes to write words in reverse way. Given a single line of
text which is written by Ignatius, you should reverse all the words
and then output them.

Input

The input contains several test cases. The first line of the input is
a single integer T which is the number of test cases. T test cases
follow. Each test case contains a single line with several words.
There will be at most 1000 characters in a line.

Output

For each test case, you should output the text which is processed.

Sample Input

3 olleh !dlrow
m’I morf .udh
I ekil .mca

Sample Output

hello world!
I’m from hdu.
I like acm.

Hint

Remember to use getchar() to read ‘\n’ after the interger T, then you
may use gets() to read a line and process it.

废话:

从这道题弄明白gets和get和scanf,gets和get是可以读取空格的,遇到回车才会结束.gets是接收一行字符串,get是接收一个字符,scanf是不会读取空格的,遇到空格和回车就会结束.这里需要接收一行字符串所以需要用gets.首先一行行的用gets收入字符串放入a数组,然后用strlen(a)算出字符串的长度(字母+符号+空格)赋值给Long.用for循环遍历数组a,遇到空格就反向输出,用i–,来一次反向输出就要加一个空格.我们for循环用的结束条件是判断a[i]等不等于\0(每个数组后面结束都会有一个\0,但是不计入长度),所以字符串最后一个词组不会在此for循环输出来,所以提到外面再输出.

代码:</

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值