Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
156589 吴宗桦 二进制半整数 C++ 解答错误 0 0 MS 244 KB 407 2024-07-17 22:26:26

Tests(0/5):


#include<bits/stdc++.h> using namespace std; int a,b,c,d[105],e,f,g; bool cifang(int x) { int y; for(y=1;y<=x;y*=2); cout<<y<<endl; if(y==x*2) return 1; return 0; } int main() { cin>>a; for(b=1;b<=a;b++) { cin>>c; if(c%2==0) d[b]=1; else d[b]=cifang(c-1); } for(b=1;b<=a;b++) if(d[b]==1) cout<<"yes"<<endl; else cout<<"no"<<endl; return 0; }


测评信息: