c语言程序设计科学出版社课后习题解答修订
版
IBMT standardization office【IBMT5AB-IBMT08-IBMT2C-ZZT18】
第3章习题解答 第1章
1.C语言程序主要由预处理命令、函数、注释等组成。
2.填空
(1)分号
(2)main
(3)stdio.h
3.
源程序:
#include
main()
{
printf(“*************************\\n”);
printf(“HelloWorld!\\n”);
printf(“*************************”);
}
4.
源程序:
#include
main()
{
inta,b,c;/*定义变量*/
scanf(“%d”,&a);/*输入第一个整数*/
scanf(“%d”,&b);/*输入第二个整数*/
c=a-b;/*计算差*/
printf(“%d-%d=%d”,a,b,c);/*输出结果*/
}
5.
(1)
(2)x=10;
(3)printf(“s=%d\\n”,s); 第2章
1.
(1)c
(2)a
(3)bg
(4)ade
(5)d
2.a.5b.295c.4d.29e.9
3.a.x=4,y=6
b.x=4,y=3
f.x=3,y=6
4.16
5.
#include
main()
{
inta,b,c;
scanf(\
c=a*b;
printf(\
} 第3章
1.
(1)b
(2)b
(3)d
(4)a
(5)b
2.
(1)&a,&b
(2)l,s
3.printf(“x=%.2f,y=%.2f\\n”,x,y);
4.