Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43962 | niyuchen | 浮点数向零舍入 | C++ | Wrong Answer | 1 MS | 256 KB | 162 | 2024-03-24 12:26:27 |
#include<bits/stdc++.h> using namespace std; int main() { double a,b; cin>>a>>b; printf("%.3lf%%", b/a*100 ); return 0; }