#3591. 排序读程序
排序读程序
题目描述
阅读程序,判断输出结果。
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int a[5] = {6, 1, 9, 3, 5};
sort(a, a + 5);
cout << a[1] << " " << a[3];
return 0;
}
{{ select(1) }}
- A.
1 3 - B.
3 6 - C.
5 9 - D.
6 3
相关
在下列比赛中: