5 条题解

  • 0
    @ 2023-3-29 17:08:31
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    double a,b;
    cin>>a>>b;
    printf("%.3lf",b/a*100);
    cout<<"%";
    return 0;
    
    }
    
    • 0
      @ 2023-3-23 13:43:10

      #include<bits/stdc++.h> using namespace std; int main() { int a,b; double c; cin>>a>>b; c=b1.0/a100; cout<<fixed<<setprecision(3)<<c; cout<<"%"; return 0; }

      • 0
        @ 2023-3-16 17:44:15
        #include<bits/stdc++.h>
        using namespace std;
        int main(){
        double a,b;
        cin>>a>>b;
        printf("%.3lf",b/a*100);
        cout<<"%";
        return 0;
        
        }
        

        甲流疫情死亡率公式:死亡数/确诊数*100。

        • 0
          @ 2023-3-16 13:54:52

          #include<bits/stdc++.h> using namespace std; int main() { double a,b,c; cin>>a>>b; c=b1.0/a; printf("%.3lf",c100); cout<<"%"; } //这是孙皓教的我不是本人

          • -5
            @ 2023-3-22 13:09:45

            #include<iostream> #include<iomanip> using namespace std; int main(){ int a,b; double c; cin>>a>>b; c=b1.0/a100; cout<<fixed<<setprecision(3)<<c<<"%"; return 0; }

            • 1

            信息

            ID
            569
            时间
            1000ms
            内存
            256MiB
            难度
            2
            标签
            递交数
            294
            已通过
            180
            上传者