Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
528 wudongyi 银行利息 C++ 通过 0 MS 276 KB 196 2021-07-13 09:38:42

Tests(1/1):


#include <iostream> #include <cmath> using namespace std; int main(){ float R,M,Y; cin>>R>>M>>Y; float s=0; R=R/100+1; for(int i=1;i<=Y;i++){ M=M*R; } M=floor(M); cout<<M; }


测评信息: