- 1、本文档共19页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
国二复习题改错(国外英文资料)
国二复习题改错(国外英文资料)
Qid: 1.
Topic: insert a number in an array that has been sorted in ascending order, and the array element is still in ascending order after insertion.
The FOUND * * * * * * * * * * *
A [I] = a [I - 1];
The correct answer: a [I + 1] = a [I];
The FOUND * * * * * * * * * * *
The exit; }
The correct answer: break; }
Qid: 2
The function of the following program is to find the following expression:
The FOUND * * * * * * * * * * *
Print ( % d , n);
The correct answer: scanf ( % d , n);
The FOUND * * * * * * * * * * *
Fun (int n)
Float fun (int n)
Qid: 3
The function of the function fun is to calculate the value of the following formula according to the value of the integer parameter m.
The FOUND * * * * * * *
Y minus 1 over I times I;
The correct answer: y - = 1.0 / (I * I);
The FOUND * * * * * * *
Return m;
The correct answer: return c;
Qid: 4
The function of the function fun is to calculate and output the sum of the square root of the first n items in the sequence, and the value of n is passed in through the form parameter.
The FOUND * * * * * * *
Fun (int n)
Double fun (int n)
The FOUND * * * * * * *
Sum = 0.0;
The correct answer: sum = 1.0;
The FOUND * * * * * * *
For (k = 0; k = n; + +)
(k = 4; k = n; k + +)
The FOUND * * * * * * *
Return s0.
The correct answer: return sum.
Qid: 5
Topic: the following procedures put a orderly sequence from small to large in a [1] to a [n], a [0] used as the unit of work, is inserted into a program to read in the x value in the array, insert, the array number still orderly.
The FOUND * * * * * * * * * * *
{a [I] = a [I + 1];
The right answer: {a [I + 1] = a [I];
The FOUND * * * * * * * * * * *
For (I = 0; I = n; I + +)
(I = 1; I = n; I + +)
Qid: 7
The functions function is to send an n subcharacter in front of a string to a character array, and then add a \ 0. You dont use strcpy, which is provided by the system. Please correct two errors in the program so that it can get the correct results.
To find out
Scanf ( %
文档评论(0)