2 条题解

  • 1
    @ 2025-8-27 13:20:36
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        double a,b;
        cin>>a>>b;
        double c=a/b;
        printf("%.9f",c);
        return 0;
    }
    
    • 0
      @ 2025-8-27 13:24:35
      a,b=map(float,input().split())
      c=float(a/b)
      print('%.9f' %c)
      
      • 1

      信息

      ID
      427
      时间
      1000ms
      内存
      128MiB
      难度
      3
      标签
      递交数
      76
      已通过
      41
      上传者