gpt4 book ai didi

C 程序不会从 STDIN 读取输入

转载 作者:行者123 更新时间:2023-11-30 14:46:52 25 4
gpt4 key购买 nike

我正在编写一个基本的统计程序,这是我用纯 C 编写的第一个程序,但我一生都无法解决这个问题。当从命令行手动输入时,它工作得很好。但是,当从输入文件中输入这些数字时,它不会读取任何数字。这是源代码:

统计.c:

#include <limits.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char const *argv[]){

// Create global variables, introduce program
int minimum = INT_MAX;
int maximum = INT_MIN;
int i = 0;
int count = 0;
double total = 0.0;

printf("%s\n", "Program1");
printf("%s\n", "Enter nums (0 terminates):");

scanf("%d", &i); // Scan in number
while (i!=0)
{
printf("%d\n", i); // Print the number just entered
count++; // Increment counter
total += i; // Add to total
if (i > max) {max = i;} // Check for maximum
if (i < min) {min = i;} // Check for minimum
scanf("%d", &i); // Read in the next number
}
printf("%s%d\n", "Nums entered: ", counter);
printf("%s%d%s%d\n", "range: ", min, ", ", max);
printf("%s%f\n", "mean: ", total/counter);
return EXIT_SUCCESS;
}

输入.txt:

2 3 5 0

当我运行./program时在终端中,然后手动输入这些数字,它会给我预期的输出。但是当我运行./program < input.txt时,什么也没有发生,它被卡住了,所以我必须使用 ^C 来终止该进程。有什么想法吗??

最佳答案

原始代码发布了定义的变量minimummaximumcount和使用的变量min分别是 maxcounter。由于原始代码因此无法编译,我们所能确定的是您的运行代码不是从最初显示的源代码创建的。 不要发布给您带来麻烦的代码的近似值 - 确保您发布的代码会导致您描述的问题(它编译;它运行;它产生声明的输出,至少在您的机器上)。

这是代码的拼写更正版本:

#include <limits.h>
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
int min = INT_MAX;
int max = INT_MIN;
int i = 0;
int count = 0;
double total = 0.0;

printf("%s\n", "Program1");
printf("%s\n", "Enter nums (0 terminates):");

scanf("%d", &i);
while (i!=0)
{
printf("%d\n", i);
count++;
total += i;
if (i > max) {max = i;}
if (i < min) {min = i;}
scanf("%d", &i);
}
printf("%s%d\n", "Nums entered: ", count);
printf("%s%d%s%d\n", "range: ", min, ", ", max);
printf("%s%f\n", "mean: ", total/count);
return EXIT_SUCCESS;
}

当在包含以下内容的文件 input.txt 上运行时:

2 3 5 0

它生成输出:

Program1
Enter nums (0 terminates):
2
3
5
Nums entered: 3
range: 2, 5
mean: 3.333333

因此,我无法重现您声称的问题,但这可能是因为我看不到您的真实代码,或者可能看不到您的真实数据。如果我从文件中省略 0,则会出现无限循环,每次都会打印 5

这是一个具有更强大输入处理功能的替代版本;它检查 scanf() 的返回值并避免重复调用。

#include <limits.h>
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
int min = INT_MAX;
int max = INT_MIN;
int i = 0;
int count = 0;
double total = 0.0;

printf("%s\n", "Program1");
printf("%s\n", "Enter nums (0 terminates):");

while (scanf("%d", &i) == 1 && i != 0)
{
printf("%d\n", i);
count++;
total += i;
if (i > max)
max = i;
if (i < min)
min = i;
}

printf("Nums entered: %d\n", count);
printf("Range: %d to %d\n", min, max);
printf("Mean: %f\n", total / count);
return EXIT_SUCCESS;
}

此代码在没有 0 作为最后一个数字的数据文件上可以正常工作。

关于C 程序不会从 STDIN 读取输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51903260/

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