- 1、本文档共324页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C_Prime_Plus(第五版)中文版课后编程题全解
第二章 C语言概述编程练习?
? 1.编写一个程序,调用printf()函数在一行上输出您的名和姓,再调用一次printf()函数在两个单独的行上输出您的名和姓,然后调用一对printf()函数在一行上输出您的名和姓。输出应如下所示(当然里面要换成您的姓名):Anton BrucknerAntonBrucknerAnton Bruckner第一个输出语句第二个输出语句仍然是第二个输出语句第三个和第四个输出语句?
#includestdio.h
int main(void){?printf(He Jin\n);?printf(He\n);?printf(Jin\n);?printf(He Jin\n);?return(0);}??? 2.编写一个程序输出您的姓名及地址。?
#includestdio.h
int main(void){?printf(Name:He Jin\n);?printf(Address:CAUC\n);?return(0);}??? 3.编写一个程序,把您的年龄转换成天数并显示二者的值。不用考虑平年( fractional year)和闰年(leapyear)的问题。?
#includestdio.h
int main(void){?int age=22;?printf(Age:%d\n,age);?printf(Day:%d\n,age*356);?return(0);}??? 4.编写一个能够产生下面输出的程序:??? For hes a jolly good fellow!??? For hes a jolly good fellow!??? For hes a jolly good fellow!??? Which nobody can deny!?? 程序中除了main()函数之外,要使用两个用户定义的函数:一个用于把上面的夸奖消息输出一次:另一个用于把最后一行输出一次。?
#includestdio.h
void printf1(void);void printf2(void);
int main(void){?printf1();?printf1();?printf1();?printf2();?return(0);}
void printf1(void){?printf(For hes a jolly good fellow!\n);}
void printf2(void){?printf(Which nobody can deny!\n);}? 5.编写一个程序,创建一个名为toes的整数变量。让程序把toes设置为10。再让程序计算两个toes的和以及toes的平方。程序应该输出所有的3个值,并分别标识它们。
#includestdio.h
int main(void){?int toes=10;?int toes_add;?int toes_square;?toes_add=toes+toes;?toes_square=toes*toes;?printf(toes=%d\ntoes_add=%d\ntoes_square=%d\n,toes,toes_add,toes_square);?return(0);}? 6.编写一个能够产生下列输出的程序:Smile ! Smile ! SmileSmile ! Smile !Smile !??? 在程序中定义一个能显示字符串smile卜一次的函数,并在需要时使用该函数。?
#includestdio.h
void display(void);
int main(void){?display();?display();?display();?printf(\n);?display();?display();?printf(\n);?display();?printf(\n);?return(0);}
void display(void){?printf(Smile!);}??? 7.编写一个程序,程序中要调用名为one_three()的函数。该函数要在一行中显示单词one,再调用two()函数,然后再在另一行中显示单词three。函数two()应该能在一行中显示单词two。main()函数应该在调用one_three()函数之前显示短语starting now:,函数调用之后要显示done!o这样,最后的输出结果应如下所示:starting nowonetwothreedone !
?
#includestdio.h
void one_three(void);void two
文档评论(0)