4 条题解

  • 0
    @ 2023-12-13 21:43:19

    #include <bits/stdc++.h> using namespace std; int main(){ int c; cin>>c; printf("%.2lf",1.8*c+32); return 0; }

    • -4
      @ 2022-10-29 9:51:32

      #include<bits/stdc++.h> using namespace std; int main(){ int n; float m=0; cin>>n; m=1.8*n+32; cout<<fixed<<setprecision(2)<<m; return 0; }

      • -4
        @ 2022-10-29 9:51:10

        #include<bits/stdc++.h> using namespace std; int main(){ int n; float m=0; cin>>n; m=1.8*n+32; cout<<fixed<<setprecision(2)<<m; return 0; }

        • -4
          @ 2022-7-29 13:14:46
          #include<bits/stdc++.h> 
          using namespace std;
          int main(){
          	double c;
          	cin>>c;
          	cout<<fixed<<setprecision(2)<<1.8*c+32;
          	return 0;
          }
          
          • 1

          信息

          ID
          25
          时间
          1000ms
          内存
          16MiB
          难度
          6
          标签
          递交数
          553
          已通过
          150
          上传者