8 条题解

  • 1
    @ 2023-10-4 17:16:10
    #include<bits/stdc++.h>
    using namespace std;int main(){cout<<5.5;}
    

    AC了!

    • 1
      @ 2023-9-5 22:18:46
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          double a,b,c;
          cin >> a >> b >> c;
          c = c - (b *0.9) - (a * 0.9);
          cout << c;
          return 0;
      }
      

      简单A

      • 1
        @ 2023-5-21 20:46:07

        #include <iostream>

        #include <iomanip> using namespace std; int main(){ double x,y,n,z; cin >> x >> y >> n; z = x + y; cout << fixed << setprecision(1) << n - z *0.9; return 0; }

        • 1
          @ 2023-5-21 20:43:28

          image

          • 0
            @ 2023-11-5 12:30:54
            #include <bits/stdc++.h> 
            using namespace std;
            int main(){
                cout<<5.5;
            }
            

            5行

            • 0
              @ 2023-8-24 10:38:43

              过辣!(脑残人士的欢呼)

                  long long x,y,n;
                  cin>>x>>y>>n;
                  cout<<n-0.9*(x+y);
              
              • 0
                @ 2022-12-6 15:14:14
                #include <iostream>//hetao3097453
                #include <iomanip>
                using namespace std;
                int main()
                {
                    double x,y,n,z;
                    cin >> x >> y >> n;
                    z = x + y;
                    cout << fixed << setprecision(1) << n - z * 0.9;
                    return 0;
                }
                
                
                • 0
                  @ 2022-11-13 13:51:20

                  号没了

                  #include <bits/stdc++.h>
                  using namespace std;
                  int main()
                  {
                      double x,y,n;
                      cin >> x >> y >> n;
                      cout << n-(x+y)*0.9;
                  }
                  
                  • 1

                  信息

                  ID
                  595
                  时间
                  1000ms
                  内存
                  64MiB
                  难度
                  3
                  标签
                  递交数
                  263
                  已通过
                  140
                  上传者