- 1、本文档共41页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
中国大学mooc哈工大c语言程序设计精髓第六十二周编程题答案
6.1下面代码的功能是将百分制成绩转换为5分制成绩,具体功能是:如果用户输入的是非法字符或者不在合理区间内的数据(例如输入的是a,或者102,或-45等),则程序输出?Input error!,并允许用户重新输入,直到输入合法数据为止,并将其转换为5分制输出。目前程序存在错误,请将其修改正确。并按照下面给出的运行示例检查程序。#includestdio.h#include string.hint main(){char score[100];int flag = 0, i, s;char grade;printf(Please input score:\n);while (1){flag=0;scanf(%s, score);for (i = 0; i strlen(score); i++){if (score[i] = 0 score[i] = 9){continue;}else{flag = 1;break;}}s = atoi(score);if (s 0 || s 100 || flag == 1){printf(Input error!\n);printf(Please input score:\n);continue;}else{break;}}s = atoi(score);if (s = 90){grade = A;}else if (s = 80){grade = B;}else if (s = 70){grade = C;}else if (s = 60){grade = D;}else{grade = E;}printf(grade: %c\n, grade);return 0;}6.2编程计算a+aa+aaa+…+aa…a(n个a)的值(4分)题目内容:编程计算 a+aa+aaa+…+aa…a(n个a)的值,n和a的值由键盘输入。例如,当n=4,a=2,表示计算2+22+222+2222的值。#includestdio.h#includemath.hint main(){int n,a,i,j;double p=0,q=0;printf(Input a,n:\n);scanf( %d,%d,a,n);for(i=1;i=n;i++){for(j=0,p=0;ji;j++){p=p+a*pow(10,j);}q=p+q;}printf(sum=%.0f\n,q);return 0;}6.3搬砖问题(4分)题目内容:n块砖(?27n=77?),36人搬,男搬4,女搬3,两个小孩抬一块砖,要求一次搬完,问男人、女人和小孩各需多少人?请用穷举法编程求解,n的值要求从键盘输入。输出结果按照男人数量升序给出(见下面示例3)。#include stdio.hmain(){int a, b, c;long n, i, t, s = 0;printf(Input n(27n=77):\n);scanf(%d, n);for (a = 0; 4 * a = n; a++)for (b = 0; 4 * a + 3 * b = n; b++)for (c = 0; 4 * a + 3 * b + c / 2 = n; c += 2)if (4 * a + 3 * b + c / 2 == n c%2 == 0 a+b+c==36){printf(men=%d,women=%d,children=%d\n, a, b, c);}}6.4编程输出某年某月有多少天(考虑到闰年)。(5分)题目内容:从键盘输入一个年份和月份,输出该月有多少天(考虑闰年),用switch语句编程。#includestdio.hint main(){int year,month,day;printf(Input year,month:\n);scanf(%d,%d,year,month);switch(month){case 1: day=31;break;case 2: day=28;break;case 3: day=31;break;case 4: day=30;break;case 5: day=31;break;case 6: day=30;break;case 7: day=31;break;case 8: day=31;break;case 9: day=30;break;case 10: day=31;break;case 11: day=30;break;case 12: day=31;break;default:day=-1;printf(Input error!\n);}if((year%4==0year%100!=0||year%400==0)month==2) day=29;if (day!=-1)printf(%
文档评论(0)