请问这个程序哪个地方错了?最后调试的结果不对,谢谢大家 帮我看看
http://blog.csdn.net/hs794502825/article/details/37991467
数组a只有十九个元素,你把它当二十个用
int a[19] ; 改为 int a[20];