Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
73 | zhaoyunkang | 计算邮资 | C++ | 通过 | 0 MS | 276 KB | 312 | 2021-05-22 14:23:35 |
#include<iostream> #include<cstdio> using namespace std; int main(){ int b,c=8,d=0; float a; cin>>a>>b; if(a<=1000){ if(b=='y'){ c=c+5; cout<<c; return 0; }else{ cout<<c; return 0; } } if(a>1000){ c=c+4; c=c+5; } cout<<c; }