#include <iostream> using namespace std; int main() { double r; while ( cin >> r ) { cout << r * 9 / 5 + 32 << endl; } }代码如上;不难(的确);AC的,没错误。