Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
431850 沈昊煊 【C2-4】求落地次数 C++ 通过 100 0 MS 240 KB 161 2026-03-13 19:17:32

Tests(1/1):


#include<iostream> using namespace std; int main(){ double n=100.0; int cnt=0; while(n>=0.5){ n=n*0.5; cnt++; } cout<<cnt<<endl; return 0; }


测评信息: