程序设计基础c语言上机指导参考答案 热度: 程序设计基础(C语言)习题集 热度: 实验内容参考答案 第1章 略 第2章 2、程序改错 (1) #include intmain() { inta=20,b=10,x; x=a; a=b; b=x; printf("a=%d,b=%d",a,b); } (2) #include ...