gpt4 book ai didi

有人能告诉我为什么这个程序总是崩溃吗?

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

也许我还是很累,但我似乎无法弄清楚为什么在第二次输入后仍然崩溃。如果在输入值之前它不断中断,那么对其进行排序就没有意义。

#include <stdio.h>

#define MAX 5

int main(){

int input[MAX], output[MAX], i, j, high;

printf("Please enter 5 exam scores.\n");
for (i=0; i<MAX; i++){
scanf("%d\n", input[i]);
}
for(i=0; i<MAX; i++)
printf("%d\n", input[i]);

return 0;
}

最佳答案

出现问题是因为您忘记在 input[i] 之前添加 '&':

scanf("%d\n", input[i]);
/// ^ missing &

关于有人能告诉我为什么这个程序总是崩溃吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47002054/

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