Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
40202 | 奚晨瑞 | 甲流疫情死亡率 | C++ | Accepted | 0 MS | 252 KB | 154 | 2024-02-08 13:40:39 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; float c=b*1.0/a; printf("%.3f",c*1.0*100); cout<<"%"; return 0; }