FZU1054阅读顺序 & c++中getchar和gets函数解析


http://acm.fzu.edu.cn/problem.php?pid=1054


FZU1054阅读顺序 & c++中getchar和gets函数解析_第1张图片

FZU1054阅读顺序 & c++中getchar和gets函数解析_第2张图片


这是一道反转字符串问题。

思路:

1.输入字符串个数

2.获取输入的字符串

3.反转,输出。


最后AC代码如下

#include 
#include 
#include 
using namespace std;

int main (){
    int number;
    char ch[220];
    cin>>number;
    getchar();
    while(number--){
        gets(ch);
        int len = strlen(ch);
        for(int i = len-1;i>= 0;i--){
            cout<

比较如下代码

FZU1054阅读顺序 & c++中getchar和gets函数解析_第3张图片


FZU1054阅读顺序 & c++中getchar和gets函数解析_第4张图片


这两片代码不同点在于getchar的位置不同,但是只有第一个是AC的。

这里就是没有明白getchar和gets这两个函数的区别。

gets:

从标准输入接收一串字符,遇到'\n'时结束,但不接收'\n',把 '\n'留存输入缓冲区;把接收的一串字符存储在形式参数指针指向的空间,并在最后自动添加一个'\0'。
getchar:

从标准输入接收一个字符返回,多余的字符全部留在输入缓冲区。


题目中,数目只需要输入一次,因而用getchar,而while循环要多次输入字符串,所以用gets。

那么getchar放到while循环里显然逻辑就错了。



你可能感兴趣的:(算法)