Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
54711 季洁 寻找最低数 C++ 解答错误 0 0 MS 244 KB 269 2022-07-29 16:55:07

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int x[100]={1,2,4,8,16,32,64},b,a,c; int main(){ while(cin>>a&&a!=0){ for(int i=0;i<=6;i++) if(a>=x[i]&&a<x[i+1]) c=i; for(int i=c;i>=0;i--) if(a>=x[i]) a-=x[i],b=i; cout<<x[b]<<endl; } return 0; }


测评信息: