回复 6楼 XQwindow
我这样改运行成功了,就是把数组的声明放在n赋值之后,这样做对不程序代码:
#inlcude<stdio.h> int main(void) { int n,index; scanf("%d",&n); double test[n]; for(index = 0;index < n;index++); scanf("%lf",&test[index]); for(index = 0;index < n;index++); printf("%f",test[index]); return 0; }