2 条题解

  • 3
    @ 2025-11-24 21:08:48
    #include<bits/stdc++.h>
    using namespace std;
    double s;
    int a,b;
    int main(){
        cin>>a>>b;
        s=b*100.0/a;
        printf("%.3lf%%",s);
        return 0;
    }
    
    • 1
      @ 2025-12-24 20:38:38

      #include<bits/stdc++.h> using namespace std; double f; int main(){ cin>>f; cout<<fixed<<setprecision(5)<<5*(f-32)/9; return 0; }

      • 1

      信息

      ID
      6815
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      递交数
      44
      已通过
      21
      上传者