第三章 书面作业
教材P53:一~四,五、2
第三章 书面作业
一、BDAB
二、1.printf 2.2 3.%d %i 4.’\0’ 5.scanf 6.%ld 7.- 8.宽度整数 9.+ 10.复合语句
三、1.A
2. i= -2,37777777776,ffffffffe,4294967294
x= 457.898, 457.90,457.8980 ,457.90,457.898000
四、1.&a, a/100 2.sqrt, ld
五、
1.#include<stdio.h>
void main()
{ char c;
scanf(“%c”,&c); printf(“%c,%c\n”,c,c-32);
}
2.#include<stdio.h>
#include<math.h>
void main()
{ float a,b,c,s,Area;
scanf(“%f%f%f”,&a,&b,&c);
if(a+b > c || a+c > b || b+c >a)
{
s = (a+b+c)/2;
Area = sqrt(s*(s-a)*(s-b)*(s-c));
printf(“%f\n”,Area);
}
else printf(“your inputted number is error!\n”);
}
附:实验指导书P100 3.3.3 同步自测 参考答案
一、选择题
1.B 2.C 3.D 4.A 5.B 6.A 7.A 8.A 9.D 10.B
暂无评论内容