A、aid
B、relief
C、benefit
D、care
第1题:
设有定义charstr[80];以下不能将输入数据first\nsecond\n<CR>读取到数组str中的语句是( )。
A.cin.get(str,strlen(str));
B.cin.getline(str,strlen(str));
C.cin>>str;
D.cin.read(str,strlen(str));
第2题:
设有char str[80]以下不能将输入数据first\nsecond\n<CR>读取到数组sir中的语句是
A.cin.get(str, strlen(str));
B.cin.getline(str, strlen(str));
C.cin>>str;
D.cin.read(str, strlen(str));
第3题:
1、对给定的关键字序列 110,119,007,911,114,120,122 进行基数排序,则第 2 趟分配收集后得到的关键字序列是()。
A.007,110,119,114,911,120,122
B.007,110,119,114,911,122,120
C.007,110,911,114,119,120,122
D.110,120,911,122,114,007,119
第4题:
设有char str[80];以下不能将输入数据first\nsecond\n<CR>读取到数组str中的语句是
A.cin.get(str,strlen(str));
B.cin.getline(str,strlen(str));
C.cin>>str;
D.cin.read(str,strlen(str));
第5题:
设有定义charstr[80];以下不能将输入数据first\nsecond\n读取到数组str中的语句是( )。
A.cin.get(str,strlen(str));
B.cin.getline(str,strlen(str));
C.cin>>str;
D.cin.read(str,strlen(str));
第6题:
对给定序列{ 110,119,7,911,114,120,122 }采用次位优先(LSD)的基数排序,则两趟收集后的结果为:()
A.7, 110, 119, 114, 911, 120, 122
B.7, 110, 119, 114, 911, 122, 120
C.7, 110, 911, 114, 119, 120, 122
D.110, 120, 911, 122, 114, 7, 119