| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1544 | asdfghjkl123456789 | 利率计算 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 237 | 2019-10-13 11:21:15 |
#include<iostream> using namespace std; int main(){ double a[6]; a[1]=2.25/100; a[2]=2.43/100; a[3]=2.70/100; a[4]=2.88/100; a[5]=3.00/100; int b,c; cin>>b>>c; cout<<"合计为"<<c*a[b]*b+c; return 0; }