- 411
- 1
- 约1.94万字
- 约 36页
- 2018-11-03 发布于浙江
- 举报
《C语言程序设计》(苏小红) 课后习题答案.docx
PAGE \* MERGEFORMAT1
2.2
#includestdio.h
main()
{
float x=2.5,y=2.5,z=2.5;
printf(x=%f\n,x);
printf(y=%f\n,y);
printf(z=%f\n,z);
}
3.1(1)
#includestdio.h
main()
{
int a=12,b=3;
float x=18.5,y=4.6;
printf(%f\n,(float)(a*b)/2);
printf(%d\n,(int)x%(int)y);
}
3.1(2)
#includestdio.h
main()
{
int x=32,y=81,p,q;
p=x++;
q=--y;
printf(%d %d\n,p,q);
printf(%d %d\n,x,y);
}
3.2
#includestdio.h
main()
{
int x,b0,b1,b2,s;
printf(Inputx:);
scanf(%d,x);
b2=x/100;
b1=(x-b2*100)/10;//或(x%100)/10;或x/10%10;
b0=x%10;
s=b0*100+b1*10+b2;
printf(s=%d\n,s);
}
3.3
#includestdio.h
#includemath.h
main()
{
floa
您可能关注的文档
最近下载
- 2025年山东省济南市历下区中考生物一模试卷 含答案.pdf VIP
- 永大电梯电器原理图及敷线图清晰版.pdf VIP
- 教师表达有效沟通的艺术.pptx VIP
- 2025年北京科技职业学院高职单招职业适应性测试历年(2019-2024年)真题考点试卷含答案解析.docx
- 2025年甘肃省兰州市城关区留置辅警笔试真题附答案解析.docx VIP
- 3.2《文学作为语言艺术的独特地位》优秀课件.pptx VIP
- DG_TJ08-2319-2020:道路视频监控信息系统联网技术标准.pdf VIP
- 2025年警务辅助人员招聘考试(公安交通管理知识)全真冲刺试题及答案.docx
- DB44_T 2680-2025 Beagle犬质量控制DB44_T 2680-2025 Beagle犬质量控制.docx VIP
- 初中体育江西省2025年教师招聘试题附答案.docx VIP
原创力文档

文档评论(0)