提交时间:2024-08-19 09:24:56
运行 ID: 166022
#include<bits/stdc++.h> using namespace std; int T, n; int main(){ cin>>T; while(T--){ cin>>n; while(true){ n /= 2; if(n == 2){ cout<<"Yes"<<endl; break; }if(n == 1){ cout<<"No"<<endl; break; } } } }