c语⾔程序设计课后题答案清华,《C语⾔程序设计》(清华⼤学出版社)书后习题参考答案...
C语⾔,程序设计教程,本资料是我们⽼师亲⾃做出后给我们进⾏学习的资料,在此给⼤家共享。本⼈不负任何责任
书后⾯的习题答案
第⼀步部分简单程序设计
P5
5.课堂实践
(1)
#include
main()
{printf(“**********\n”); printf(“**********\n”); printf(“**********\n”);
}
(2)
#include
main<> /*main()*/
{
printf(“Hello,World.\n);
}
P9
5.课堂实践
(1)
#include
main()
{
char a=116,b=119,temp;
printf(“a=%c,b=%c\n”,a,b); temp=a;
a=b;
b=temp;
printf(“a=%c,b=%c\n”,a,b); }
(2)功能:交换x,y的值;
#include main()
{ int x,y;
x=5; y=10;
x=x+y;
y=x-y;
x=x-y;
printf(“%d,%d”,x,y);
}
(3)c:dec=120,oct=170,hex=78,ASCLL=x 4、输出内容向左靠齐
自学编程的书籍12
12
3.14159260000000000000000000000000 3.14159260000000000000000000000000 P11
5.课堂实践
(1)
①3.0-(3.0*4)/(4+2)
#include
main()
{ float x;
x=3.0-(3.0*4)/(4+2);
printf(“%f”,x);
}
②1/2*(2*3+2/(2*2*2))
#include
main()
{ float x;
x=1/2*(2*3+2/(2*2*2));
printf(“%f”,x);
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论