6 条题解

  • 1
    @ 2025-03-28 20:15:37

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    double f,c;
    cin>>f;
    c = 5 * (f-32) / 9.0 ;
    cout<<fixed<<setprecision(5)<<c*1.0;

    return 0;
    }

  • 1
    @ 2025-03-28 20:14:53

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    double f,c;
    cin>>f;
    c = 5 * (f-32) / 9.0 ;
    cout<<fixed<<setprecision(5)<<c*1.0;

    return 0;
    }

  • -1

    #include<iostream>
    #include<cmath>
    #include<iomanip>
    using namespace std;
    int main()
    {
    double f;
    cin>>f;
    cout<<fixed<<setprecision(5)<<5*(f-32)/9;
    return 0;
    }

  • -3

    #include<iostream>
    #include<cmath>
    #include<iomanip>
    using namespace std;
    int main()
    {
    double f,c;
    cin>>f;
    c=5*(f-32)/9;
    cout<<fixed<<setprecision(5)<<c<<endl;
    return 0;
    }

  • -3
    @ 2021-11-21 21:30:17

    #include <iomanip>
    #include <iostream>
    using namespace std;
    int main()
    {
    double f,C;
    cin>>f;
    C=5*(f-32)/9.0;
    cout<<fixed<<setprecision(5)<<C;
    return 0;
    }

  • -5

    #include<iostream>
    #include<iomanip>
    using namespace std;
    int main()
    {
    double f;
    cin>>f;
    cout<<?;
    return 0;
    }

  • 1

信息

ID
2317
难度
1
分类
(无)
标签
递交数
164
已通过
116
通过率
71%
被复制
2
上传者