Getting to meet and talk with new people from all over the world is one of the good things about this hostel.
查看答案
At the end, the boy in the video said that he is staying at this hostel in Bali to show people that "you don't need to have a lot of money to have a great time".
A. 对
B. 错
以下能正确定义一维数组的选项是()。
A. int num(5*2);
B. int num[5*2];
C. int long[10];
D. int num(10);
以下对一维数组a进行正确初始化的语句是()。
A. int a[10]=(0,0,0,0,0);
B. int a[10]={1;3;6;8;9};
C. int a[ ]={0,1};
D. int a[10]={ };
若有定义int a[2][3];,以下选项中对数组a的数组元素正确引用的是()。
A. a[2][!1]
B. a[2][3]
C. a[0][3]
D. a[1>2][!1]