请问这个C++程序哪里出错了,为什么每次编译链接的时候能行,却运行不了。

2025-01-24 02:38:48
推荐回答(4个)
回答1:

scanf("%d",score);改成scanf("%d",&score); 下面还有个 改了

回答2:

int score;
char grade;
printf("please input a student's score:");
//score前面加&号
scanf("%d",&score);

回答3:

输入语句错了,输入语句传进入的应该是变量的地址scanf("%d",&score);

回答4:

这段编码中的scanf语句错误,正确的是
scanf("%d,&score")
你再试一下。