题解列表

筛选

数列有序-C++超简单解法

摘要:**没必要把输入的数存起来,输入的时候直接判断然后输出就行** ```cpp #include using namespace std; int main() { int n, x, t……