gpt4 book ai didi

批评我从输入流中跳过 k 个字符的函数

转载 作者:太空宇宙 更新时间:2023-11-04 04:09:33 25 4
gpt4 key购买 nike

<分区>

从事(应该是)一个简单的项目,从标准输入中获取输入并重新格式化以匹配输出规范。我只是想看看这里的专家如何看待以下应该跳过 k 个字符直到行尾的函数,除非 k < 0,它将继续跳过字符直到到达换行符。

  1 #include <stdio.h>
25 int skip(int count){
26 int i;
27 int ch;
28
29 for(i = 0; count < 0 || i < count; i++){
30 ch = fgetc(stdin);
31 if(ch == EOF){
32 return -1;
33 }
34 if(ch == '\n'){
35 return 0;
36 }
37 }
38 return 1;
39 }

(包括行号以供引用)

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