| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 123687 | 王影彤 | 温度换算 | C++ | Wrong Answer | 0 | 0 MS | 256 KB | 167 | 2024-01-23 08:57:27 |
#include <iostream> #include <cstdio> using namespace std; int main() { double f,c; cin>>f; c=5*(f-32)/9; printf("c=%.2f",c); return 0; }