Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102014 秦浩然 11温度转换II C++ Wrong Answer 1 MS 268 KB 172 2024-12-21 11:13:03

Tests(0/10):


Code:

#include<iostream> using namespace std; int main(){ double F,C; scanf("%lf",&F); if(F=C*9/5+32){ cout<<"C"; } return 0; }


Run Info:

------Input------
9.8
------Answer-----
-12.3333
------Your output-----
C