- 1、本文档共2页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
中 原 工 学 院
重修标识2014 ~2015 学年 第 1 学期
重修标识
A卷B卷软件学院14级本科各 专业 C程序设计 课程期末试卷答案
A卷
B卷
题号
一
二
三
四
五
六
七
八
九
十
总分
一、单选题(每题1分,共15分)
1.C 2.A 3.B 4.B 5.D
6.A 7.C 8.A 9.C 10.B
11.C 12.B 13.C 14.B 15.B
二、填空题(每空1分,共10分)
1.main
2.逐步细化,逐步求精的过程
3./* */ 和 //
4. xzyx
5. While是先判定条件再执行循环体,do……while是先执行循环体再判断
6.递归调用
7.#include
8.15
9. 0
三、阅读程序,写出程序的输出结果(1~5每小题4分,第5小题5分,共25分)
1. max=4
2.
1
2 4
3 6 9
4 8 12 16
5 10 15 20 25
3.
a=3,,b=5
a=3,,b=5
a=5,,b=3
4.
5 is a Prime Number
6 is not a Prime Number
7 is a Prime Number
8 is not a Prime Number
5.
English character: 6
digit character: 0
space:2
other character:3
6.
Input students ID and score:101 68
Input students ID and score:105 96
Input students ID and score:109 75
Input students ID and score:112 58
Input students ID and score:115 88
Input students ID and score:118 79
Input students ID and score:125 91
Input students ID and score:-1 -1
Total students are 7
Input the searching ID:112
ID=112:score = 58
四、程序填空:根据题意,将程序补充完整。(每个空2分,共20)
1.
scanf(%c,a);
printf(a=%c\n ,a+32);
2.
maxpos=i;
a[i]min
a[maxpos]=a[minpos];
班级 姓名 学号 ………………………………………
班级 姓名 学号
………………………………………装……………………………订……………………………线………………………………………
3.
p*=i;
return sum;
4.
Mystrcpy(b,a);
*dstStr=*srcStr;
dstStr++;
四、程序设计题(30分)(编程题无统一答案,此答案仅供参考)
1、编写一个程序完成:从键盘任意输入一个年号,判断该年是否为闰年,若为闰年输出“yes”,否则输入“No”。已知符合下列条件之一者为闰年:(1)能被4整除,但不能被100整除;(2)能被400整除。(7分)
#include stdio.h
int main() 1分
{
int year;
printf(please input year:\n);
scanf(%d,year); 1分
if((year%4==0year%100!=0)||year%400==0) 2分
printf(%d is a leap year!\n,year); 1分
else 1分
printf(%d is not a leap year!\n,year); 1分
}
2 、编程一个函数Fib
文档评论(0)