标签:
#include <stdio.h>
main()
{
int a,i,t;
scanf("%d",&i);
while(i--)
{
scanf("%d",&a);
{for(t=0;t<=a;t++)
if(t%2!=0)
printf("%d ",t);}
printf("\n");
{
for(t=1;t<=a;t++)
if(t%2==0)
printf("%d ",t);
}
}
}
标签:
原文地址:http://www.cnblogs.com/chc0109/p/5477127.html