2 条题解

  • 0
    @ 2026-8-4 14:10:20

    #include <bits/stdc++.h>

    using namespace std;

    int main() { double a; int b, c; cin >> a >> b; c = (int)(a * b); cout << fixed << setprecision(2) << a << " " << b << " " << c; return 0; }

    • -1
      @ 2026-7-2 16:08:09

      #include <bits/stdc++.h>

      using namespace std;

      int main() { double a; int b,c; cin >> a >> b; c = (int)(a * b); cout << fixed << setprecision(2) << a << " " << b << " " << c; return 0; }

      • 1

      信息

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