提交时间:2024-07-18 21:34:15

运行 ID: 156945

#include<bits/stdc++.h> using namespace std; int main(){ int t; cin>>t; for(int i=1;i<=t;i++){ bool a=true; int temp,sum=1; cin>>temp; while(temp>sum){ if(pow(2,sum++)==temp){ cout<<"Yes\n"; a=false; } } if(a)cout<<"No\n"; } }