2 条题解

  • 0
    @ 2026-4-8 22:45:27
    #include<bits/stdc++.h>
    using namespace std;
    double a,b;
    int main(){
    	//long long l=-2e9,r=2e9,mid;
    	cin>>a>>b;
    	cout<<fixed<<setprecision(2)<<a+b;
    	return 0;
    }
    
    
    • 0
      @ 2025-11-15 11:13:35
      #include <bits/stdc++.h>
      using namespace std;
      int main()
      {
          float a=0,b=0;
          cin>>a>>b;
          printf("%.2f",a+b);
      	return 0;
      }
      
      
      • 1

      信息

      ID
      109
      时间
      1000ms
      内存
      256MiB
      难度
      6
      标签
      (无)
      递交数
      459
      已通过
      126
      上传者