| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 430700 | 许清菡 | 【C1-9】计算比值 | C++ | Wrong Answer | 0 | 2 MS | 248 KB | 181 | 2026-02-27 16:15:26 |
#include<iostream> #include<iomanip> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<fixed<<setprecision(2)<<1.0*100*max(a,b)/min(a,b)<<"%"<<endl; return 0; }