2 条题解

  • 0
    @ 2024-11-9 11:40:34

    import numpy as np a=np.float64(input()) a=int(a) print(a)

    • -2
      @ 2024-11-17 21:09:32

      因为输出小数点后 99 位,所以printf("%.9lf",a/b);

      #include <bits/stdc++.h>
      using namespace std;
      int main()
      {
          double a,b,c;
          cin>>a>>b;
          printf("%.9lf",a/b);
          return 0;
      }
      
      
      • 1

      信息

      ID
      4466
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      (无)
      递交数
      350
      已通过
      114
      上传者