阅读程序,请选择输出结果
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include <iostream> using namespace std; #define N 7 int fun1( char s[], char a, int n) { int j; j = n; while (a < s[j] && j > 0 ) j--; return j; } int fun2( char s[], char a, int n) { int j; j = 1 ; while (a > s[j] && j <= n) j++; return j; } int main() { char s[N + 1 ]; int k, p; for (k = 1 ; k <= N; k++) s[k] = 'A' + 2 * k + 1 ; p = fun1(s, 'M' , N); cout << p + fun2(s, 'M' , N) << endl; return 0 ; } |
9
10
11
12
答案 C 错选 B
fun1的功能是:从数组s的第N-1位开始向前找(从0开始),找到s中不大于参数a的元素,如果存在,返回元素的索引,否则返回-1;
fun2的功能是:从数组s的第j+1位开始向后找(从0开始),找出不小于参数a的元素,如果存在返回元素的索引,否则返回s的数组个数;
这里s的元素个数为8,第0位为空,1-7位分别是:
1: D;
2: F;
3: H;
4: J;
5: L;
6: N;
7: P;
所以fun1返回的值为5,s[5]='L',不大于‘M’。
fun2的返回值为6,s[6]=‘N’,不小于'M'.
5+6=11;