Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
31309 lnx 津津的储蓄计划 C++ 通过 0 MS 248 KB 365 2023-11-18 13:07:37

Tests(1/1):


#include<iostream> #include<cmath> using namespace std; int main() { int moh=0,mtm=0; for(int i=1;i<=12;i++) { moh+=300; int sp; cin>>sp; if(moh<sp) { cout<<"-"<<i; return i; } else { int k=floor((moh-sp)/100); mtm+=100*k; moh-=100*k; moh-=sp; } } float tot=moh+mtm*1.2; cout<<tot; return 0; }


测评信息: