提交时间:2024-08-19 20:25:24

运行 ID: 167901

#include<bits/stdc++.h> using namespace std; int t,n; bool f(int x) { int k=0; if(n==1) { return 0; } while(x!=0) { if(x%2==1) { k++; } x/=2; } return (k==2||k==1); } int main() { cin>>t; while(t--) { cin>>n; if(f(n)==1) { cout<<"yes\n"; } else { cout<<"no\n"; } } return 0; }