题目大意:t组测试数据,每次输入一个正整数n(n>1)
以某种方式排列输出1~n,但是输出项数不能和该数相等(例:2 1 3第三位等于3,就属于不允许的输出方式)
有的人会想,我直接倒序输出就行,不一定(举例:5 4 3 2 1第三位和3相等吧)
因为n大于1,所以只需要从2开始循环输出,最末尾输出1
就可防止让数值不等于数组中的下标+1
此题很简单,不多解释,代码如下:
#include<iostream>
using namespace std;
int main()
{
int n,t,i;
cin >> t;
while (t--)
{
cin >> n;
for( i = 2; i <= n; i++) cout << i << " ";
cout << "1" << endl;
}
}