运行 ❯
获得您
自己的
网站
×
更改方向
更改主题,深色/亮色
转到空间
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { vector<int> numbers = {1, 2, 3, 5, 7, 9}; if (is_sorted(numbers.begin(), numbers.end())) { cout << "Sorted"; } else { cout << "Not sorted"; } return 0; }
已排序