3 条题解

  • 3
    @ 2024-1-29 18:47:36
    #include<bits/stdc++.h>
    using namespace std;
    int a[100][100];
    int main(){
    double n,x;
    cin >> n >> x;
    cout<<fixed<<setprecision(2)<<n<<"+"<<x <<"=" << n+x << endl;
    //so easy
    }
    
    • 0
      @ 2023-3-12 10:44:40
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	double a,b;
              cin>>a>>b;
              std::cout << std::fixed << std::setprecision(2)<<a<<'+'<<b<<'='<<a+b;
      	return 0;
      }
      
      • -2
        @ 2023-4-1 21:50:18

        #include<bits/stdc++.h> using namespace std; int main(){ double a,b; cin>>a>>b; std::cout << std::fixed << std::setprecision(2)<<a<<'+'<<b<<'='<<a+b; return 0; }

        • 1

        信息

        ID
        15
        时间
        1000ms
        内存
        256MiB
        难度
        1
        标签
        (无)
        递交数
        246
        已通过
        192
        上传者