标签:奇偶数 TE can stdio.h for printf iostream ++ scan
水题。。。
#include <stdio.h> #include <algorithm> #include <iostream> int main() { int x,t; int i; scanf("%d",&t); while(t--) { scanf("%d",&x); for(i=1;i<=x;i++) if(i&1) printf("%d ",i); printf("\n"); for(i=1;i<=x;i++) if(!(i&1)) printf("%d ",i); printf("\n"); } return 0; }
标签:奇偶数 TE can stdio.h for printf iostream ++ scan
原文地址:https://www.cnblogs.com/darkchii/p/9165050.html