#include<bits/stdc++.h> using namespace std; int main() { float c,f; cin>>f; c = 5*(f-32)/9; printf("%.5lf",&f); return 0; }
请问我的代码出现神马问题了?