6 条题解

  • 6
    @ 2022-5-27 20:41:52

    王老这水题分布不均啊

    using namespace std;
    	double a,b,c=1,d,x,y;
    int main(){
    	cin>>a>>b;
    	
    	
    	cout<<fixed<<setprecision(3)<<a/b<< endl;//保留二位小数 
    
    	
    
    
    
    	
    	return 0;
    }
    
     (~ ̄(OO) ̄)ブ
    
    • @ 2022-8-13 19:48:25

      👍 👍 👍 🎉️

  • 3
    @ 2022-11-16 17:13:21
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	double x,y;
        cin>>x>>y;
        printf("%.3lf",x/y);
        return 0;
    
    }
    
    • 0
      @ 2023-5-20 19:25:31

      #include<bits/stdc++.h> using namespace std; int main(){ double x,y; cin>>x>>y; printf("%.3lf",x/y); return 0;

      }

    • 0
      @ 2022-11-16 17:12:59
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	double x,y;
          cin>>x>>y;
          printf("%.3lf",x/y);
          return 0;
      
      }
      
      • -1
        @ 2023-3-22 17:10:10

        yyy

        • -3
          @ 2022-11-14 16:57:16
          using namespace std;
          	double a,b,c=1,d,x,y;
          int main(){
          	cin>>a>>b;
          	
          	
          	cout<<fixed<<setprecision(3)<<a/b<< endl;//保留二位小数 
          
          	
          
          
          
          	
          	return 0;
          }
          

          Copy

          (~ ̄(OO) ̄)ブ
          
          • 1

          信息

          ID
          19
          时间
          1000ms
          内存
          256MiB
          难度
          5
          标签
          递交数
          648
          已通过
          256
          上传者