Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
168056 何阳熙 整数幂 C++ 编译错误 0 0 MS 0 KB 292 2024-08-19 22:06:12

Tests(0/0):


#include <bits/stdc++.h> using namespace std; bool isPowerofTwo(int n){ if(n<= 0)return false; return(n&(n-1))== 0; } int main(){ int num; cin >> num; if(isPowerofTwo(num)){ cout <<"YES" } else { cout <<"NO"; } return 0; }


测评信息: