3 条题解

  • 2
    @ 2023-7-14 16:43:51
    #include <bits/stdc++.h>
    using namespace std;
    int main(){
    	int i=0;
    	double n=100;
    	while(n>0.5){
    		n=n/2;
    		i++;
    	}
    	cout<<i;
    	return 0;
    }
    

    信息

    ID
    63
    时间
    1000ms
    内存
    16MiB
    难度
    6
    标签
    递交数
    296
    已通过
    102
    上传者