gpt4 book ai didi

c - fgets() 和 sscanf() 只存储数组中的第一个整数

转载 作者:太空宇宙 更新时间:2023-11-04 07:44:37 26 4
gpt4 key购买 nike

<分区>

我试图使用 Enter 键终止整数数组输入。所以,我想到了使用 fgets 和 sscanf() 但每次我只获得第一个值时我都尝试了几种方法。有人可以帮助我做错了什么。

#include<stdio.h>
int main(){
int inp[100]={0};

int c=0,n;
char str[100]={0};
char *data = str;

while ((NULL != fgets(str, sizeof str, stdin)) && (str[0] != '\n')) {
if (1 != sscanf(str,"%d",&inp[c])) {
puts("Input was not an integer, try again.\n");
continue;
}
printf("\ninp[%d] = %d",c,inp[c]);
c++;
if (c >= 100) break;
}
}

我已经添加了我的代码和输出的快照 - Code Output

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