我是 c 新手,我正在尝试编写 ac 程序,该程序使用从键盘输入的 10 个整数值scanf
,然后使用打印它们,printf
但结果不正确。这是代码:
#include<stdio.h>
#include<conio.h>
main(){
int x[10];
printf("\n\n\t\t PRGRAM THAT CAPTURES AND PRINTS 10 SCORES");
for(int i=1;i<=10;i++){
printf("\n\tEnter Score %d", i);
scanf("%d",x);
}
printf("\n\t The entered scores are: %d",x[i]);
return(0);
}
给出的输出是一个四位数字,例如 8731,但我希望是 1234567890。请帮忙