Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2265 彭睿祺 03温度转换 C++ Accepted 0 MS 268 KB 179 2023-12-23 15:47:50

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ float a; float d; cin>>d; a=d*9/5+32; cout<<a; return 0; }