提交时间:2024-07-18 21:47:12
运行 ID: 156951
#include<bits/stdc++.h> using namespace std; int main(){ int t; scanf("%d",&t); for(int i=1;i<=t;i++){ double temp; scanf("%lf",&temp); while(temp>1){ temp/=2; } if(temp==1) printf("Yes\n"); else printf("No\n"); } }