2 条题解

  • 1
    @ 2024-10-3 11:32:30
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    	double f;
    	double c;
    	cin>>f;
    	c=5*(f-32)/9;
    	printf("%.5lf",c);
    	return 0;
    }
    
    • 0
      @ 2025-10-5 19:18:29

      #include<bits/stdc++.h> using namespace std; int main() { double c,f; cin>>f; c=5*(f-32)/9; printf("%.5lf",c); return 0; }

      • 1

      信息

      ID
      431
      时间
      1000ms
      内存
      128MiB
      难度
      3
      标签
      递交数
      34
      已通过
      20
      上传者