A.NULL
B.array(3){[0]=int(1) [1]=int(2) [2]=int(2)}
C.bool(true)
D.array(3){[2]=int(1) [1]=int(2) [0]=int(3)}
第1题:
函数Min的功能是返回具有n个元素的数组array中的最小值。请将横线处的缺失部分补充完整,使得程序的输出结果为1.24。
include<iostream>
using namespace std;
template<typename T>
T Min(T*array, int n){
T min=array[0];
for(int i=1; i<n; i++)
if(array[i]<min)min=array[i];
return min;
}
int main(){
double art[8]={5.2, 48.45, 41.01, 42, 51.2, 1.24, 14.12, 42};
cout<<______;
return 0:
}
第2题:
A.Array_keys
B.Array_values
C.Array_merge
D.Array_flip
第3题:
下面的程序执行后array的值为() for k=1:10 if k>6 break; else array(k)=k; end end
A.array=[1 2 3 4 5 6]
B.array=[1 2 3 4 5 6 7 8 9 10]
C.array=6
D.array=10
第4题:
有以下程序: #include <iostream> #include <cstdlib> using namespace std; int main() { int arraysize; int *array; cout<<"Please input the size of the array:"; cin>>arraySiZe; array=new int[arraysize]; if(array==NULL) { cout<<"allocate Error\n"; exit(1); } for(int i=0;i<arraysize;i++) array[i]=i*i; int j; cout<<"which element you want to check:"; cin>>j; cout<<array[j]<<end1; return 0; } 执行程序输入:10<空格>5,则输出结果为( )。
A.allocate Error
B.1
C.0
D.25
第5题:
已有数组a=array([2,4,7,3,1]), 对其进行排序运算np.sort(a),之后输出a的结果为:
A.array([1,2,3,4,7])
B.array([7,4,3,2,1])
C.array([2,4,7,3,1])
D.array([2,4,3,1,7])