2 条题解

  • 1
    @ 2024-7-25 12:28:26

    参考答案:

    #include<iostream>
    using namespace std;
    int main()
    {
        double a, b;
        cin >> a >> b;
        printf("%.2f", a / b);
        return 0;
    }
    
    • 0
      @ 2025-10-13 9:29:09

      Python:

      a,b=map(float,input().strip().split())
      ans = a/b
      print("%.2f" % ans)
      
      • 1

      信息

      ID
      17
      时间
      1000ms
      内存
      256MiB
      难度
      7
      标签
      递交数
      33
      已通过
      9
      上传者