4 条题解

  • 2
    @ 2025-2-12 20:43:13
    #include<bits/stdc++.h>
    #define yy return 0;
    using namespace std;
    signed main(){
        long n;
        cin>>n;
        cout<<n;
        yy
    }
    • -1
      @ 2024-11-9 11:40:34

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

      • -2
        @ 2024-12-30 12:29:17

        x = float(input())

        rounded_x = int(x)

        print(rounded_x)

        • -5
          @ 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
          标签
          (无)
          递交数
          387
          已通过
          125
          上传者