love_qj 发表于 2020-3-6 21:37:05

关于gets输入问题

#include<stdio.h>
#include<string.h>

void strmcpy(char*s,char*t,int m);

void strmcpy(char*s,char*t,int m)
{
        strcpy(s, t + m - 1);
}

int main(void)
{
        char s = {0};
        char t = {0};
        int m;
        printf("从第几个字符开始复制:");
    scanf("%d",&m);
        printf("输入一串字符:");
        gets(t);
        strmcpy(s,t,m);
        puts(s);
       
        return 0;
}

为什么不能输入,换成scanf(“%s”, t);就可以

qiuyouzhi 发表于 2020-3-6 21:48:24

应该要写一个while循环接收输入吧

Ranbo_ 发表于 2020-3-6 22:30:32

本帖最后由 Ranbo_ 于 2020-3-6 22:32 编辑

因为你的scanf("%d",&m);读取到m之后,你需要键入一个空白符,像空格回车那些,scanf才知道,噢,我的m的值已经读到了,但是这导致你的标准输入流里会有遗留的字符,因此你的gets()函数无法正常读取数据。所以一般在当前语句从标准输入流里读取完之后要清空缓冲区,才能使后续的输入有效。

在scanf后面加一句清空缓冲区即可:

#include<stdio.h>
#include<string.h>

void strmcpy(char*s,char*t,int m);

void strmcpy(char*s,char*t,int m)
{
    strcpy(s, t + m - 1);
}

int main(void)
{
    char s = {0};
    char t = {0};
    int m;
    printf("从第几个字符开始复制:");
    scanf("%d",&m);
    fflush(stdin);
    printf("输入一串字符:");
    gets(t);
    strmcpy(s,t,m);
    puts(s);

    return 0;
}



页: [1]
查看完整版本: 关于gets输入问题