Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
54640 桑迪 寻找最低数 C++ 通过 100 0 MS 248 KB 179 2022-07-29 16:38:08

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int a; int main(){ cin>>a; while(a){ int s=0; while(a%2==0)a/=2,s++; cout<<(1<<s)<<endl; cin>>a; } return 0; }


测评信息: