样例输入 4 表示有四组输入
然后对应的5 | 9 | 16 | 11就是四个输入
输入5 对应的输出 5
输入9 对应的输出9 7 11 17 13 5
输入16对应的输出No number can be output !
输入11对应的输出11 17 13 5
#include"stdio.h"
int main()
{
int n;
scanf("%d",&n);
while(n--)
{
int m,count=0;
scanf("%d",&m);
while(m!=1)
{
if(m==5){printf("%d\n",m);count++;break;
}
if(m%2!=0) {printf("%d ",m);count++;
}
if(m%2==1) m=m*3+1;
else m=m/2;
}
if(count==0) printf("No number can be output !\n");
}
return 0;
}