CCF-GESP计算机学会等级考试2024年9月四级C++题解

B站影视 2024-11-27 02:44 2

摘要:来百度APP畅享高清图片多次区间升序排序,输出最终结果。模拟、排序。#includeusing namespace std;int n, q, l, r;int a[105];int main {cin >> n;for(i

多次区间升序排序,输出最终结果。

模拟、排序。

#include

using namespace std;

int n, q, l, r;

int a[105];

int main {

cin >> n;

for(int i = 1; i

cin >> a[i];

}

cin >> q;

for(int i = 1; i

cin >> l >> r;

sort(a + l, a + r + 1);

}

cout

}

return 0;

}

来源:精彩教育

相关推荐