3 条题解

  • 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);
      }
      
      • 0
        @ 2026-2-5 17:11:30

        #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

        信息

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