#include<iostream> using namespace std; int main() { int c,f; for(int i = 100 ;;i--) { c = i; f = (9*i)/5.0 + 32; if(f == c) break; } cout<<"华氏温度和摄氏温度中数值相同的一个温度:"<<"F = "<<f<<" "<<"C= "<<c<<endl; return 0; }
时间: 2024-10-12 01:04:41
#include<iostream> using namespace std; int main() { int c,f; for(int i = 100 ;;i--) { c = i; f = (9*i)/5.0 + 32; if(f == c) break; } cout<<"华氏温度和摄氏温度中数值相同的一个温度:"<<"F = "<<f<<" "<<"C= "<<c<<endl; return 0; }