gpt4 book ai didi

c - 为什么为 scanf 输入添加多个句点会跳过下一个 scanf 函数?

转载 作者:行者123 更新时间:2023-11-30 16:11:20 27 4
gpt4 key购买 nike

为什么为 scanf 输入添加多个句点会跳过下一个 scanf 函数。示例输入:b. b.

int main (void) {

char b[7] = " ";

printf("This is: ");
scanf(" %s", b);

printf("This is 2nd: ");
scanf(" %s", b);

printf("This is 3rd: ");
scanf(" %s", b);

printf("\nThis is 4rth: %s\n", b);
printf("This is 5th: %s", b);

return 0;
}

//输出

This is: b. b.

This is 2nd: This is 3rd:

最佳答案

不是句点的问题,跳过下一个 scanf 语句是因为您的输入包含空格。

请检查解释链接-Taking String input with space in C

关于c - 为什么为 scanf 输入添加多个句点会跳过下一个 scanf 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58636097/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com