- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Chapter Three Keyboard Input and Screen Output
Exercises
Write a program to in put four n umbers and display them in reverse order.
#i nclude stdio.h
int mai n(){
prin tf(Please in put four n umbers:);
int a,b,c,d;
scan f(%d%d%d%d, d, c,b, a);
prin tf(%d %d %d %d\n,a,b,c,d);
return 0;
}
Write a program that in puts a n umber of hours and displays the equivale nt n umber of weeks, days
and hours. For example, an in put of 553 should display 3 weeks, 2 days and 1 hour.
#i nclude stdio.h
int mai n(){
int hours;
int week,day,hourLeft;
prin tf(Please in put the hours:);
sca nf(%d,hours);
week=hours/24/7;
day=hours/24%7;
hourLeft=hours-hours/24*24;
pr in tf(%d weeks,%d days,%d hours\n,week,day,hourLeft);
return 0;
}
Assuming the human heart rate is seventy-five beats per minute; write a program to ask a user their age in years and to calculate the n umber of beats their heart has made so far in their life. Ig nore leap years. (leap years: 闰年)
#i nclude stdio.h
int mai n(){
int years;
prin tf(Please in put your age:);
sca nf(%d, years);
pr in tf(the n umber of beats your heart has made so far in your life is %d\n,years*75*60*24*365);
return 0;
}
Write a program to accept a temperature in degrees Fahre nheit and con vert it to degrees Celsius. Your program should display the follow ing prompt:
En ter a temperature in degrees Fahre nheit:
You will the n en ter a decimal n umber followed by the En ter key.
The program will the n convert the temperature by using the formula
Celsius = (Fahre nheit - 32.0 ) * (5.0 / 9.0)
Your program should the n display the temperature in degrees Celsius using an appropriate message.
#i nclude stdio.h
int mai n(){
double Fahre nheitT;
prin tf(E nter a temperature in degrees Fahre nheit:);
sca nf(%lf,F ahre nheitT);
double CelsiusT= (Fahre nheitT - 32.0 ) * (5.0 / 9.0);
pri ntf(the temperature in degrees Celsius is:%lf\n,CelsiusT);
return 0;
}
Make changes to the program in exercise 4 to accept the temperature in degrees Celsius and convert
it
文档评论(0)