2 条题解

  • 1
    @ 2025-11-24 19:32:18
    #include<bits/stdc++.h>
    using namespace std;
    int a,b;
    int main(){
        scanf("%d%d",&a,&b);
        printf("%.9f",(double)a/(double)b);
        return 0;
    }
    
    • 1
      @ 2025-11-24 17:17:36
      #include<iostream>
      using namespace std;
      int main(){
          int a,b;
          cin>>a>>b;
          double p=a,pp=b;
          printf("%.9lf",p/pp);
      }
      
      • 1

      信息

      ID
      6814
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      递交数
      29
      已通过
      24
      上传者