gpt4 book ai didi

C代码运行时崩溃

转载 作者:行者123 更新时间:2023-11-30 19:55:37 26 4
gpt4 key购买 nike

#include<stdio.h>

int main()
{
int line,linex;

printf("Enter number of lines: ");
scanf("%d",&line);
linex=line;

while(line!=0)
{
int input=0,total=0,number=0;

printf("Enter line %d: ",(linex-line+1));
scanf("%d",input);

while (input!=-1)
{
total+=input;
number++;
}
printf("Average = %f\n",(total/number));
line-=1;
}
return 0;
}

上面是我的代码,它将询问用户行数、每行中的数字,然后打印出每行的平均值。问题是,当我尝试在 Microsoft Visual C++ 2010 Express 中运行此程序时,程序崩溃了。当我输入 -1 来中断第二个 WHILE 循环后,它崩溃了。

最佳答案

    scanf("%d",input);

应该是:

    scanf("%d",&input);

关于C代码运行时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14394907/

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