3 条题解

  • 2
    @ 2023-8-20 14:27:59
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int n=0;
    	double m=100;
    	while(m>=0.5){
    		n++;
    		m=m/2;
    	}
    	cout<<n;
    	return 0;
    }
    
    • 2
      @ 2023-7-14 16:54:44
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
          int com=0;
          double b=100;
          while(b>=0.5){
      		com++;
      		b/=2;
          }
      	cout<<com;	
      	return 0;
      }
      
      • 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;
        }
        
        • 1

        信息

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