3 条题解

  • 0
    @ 2025-3-2 11:48:34

    #include<bits/stdc++.h>

    
    using namespace std;
    
    int main()
    
    {
    
    double n,m;
    cin >> n >> m;
    cout << fixed << setprecision(2) << n-m*0.8; 
    return 0;
    }
    • 0
      @ 2025-3-2 11:48:17

      #include<bits/stdc++.h>

      using namespace std;

      int main()

      {
      
      double n,m;
      cin >> n >> m;
      cout << fixed << setprecision(2) << n-m*0.8;
      \
      return 0;
      }
      • 0
        @ 2024-12-7 19:38:14

        #include<bits/stdc++.h>

        using namespace std;

        int main()

        {

        double n,m;
        cin >> n >> m;
        cout << fixed << setprecision(2) << n-m*0.8; 
        return 0;
        

        }

        • 1

        信息

        ID
        235
        时间
        1000ms
        内存
        64MiB
        难度
        3
        标签
        递交数
        34
        已通过
        21
        上传者