gpt4 book ai didi

c - While 循环比较字符串/字符与 fgets

转载 作者:行者123 更新时间:2023-11-30 15:17:10 33 4
gpt4 key购买 nike

我正在尝试使用 fgets 获取用户输入在 C 中,我在使用 while 循环时遇到问题。

这是我正在使用的代码:

char input[300];

fgets(input, 300, stdin);

while(strcmp("Quit", input) != 0) {

fgets(input, 300, stdin);

}

当我输入Quit时循环继续并且不会终止,我不明白为什么会这样。

最佳答案

fgets() 还将换行符存储在 input 中。要么手动删除它,要么像这样比较:

while(strcmp("Quit\n", input) != 0)

关于c - While 循环比较字符串/字符与 fgets,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32642790/

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