Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
125371 | 黄本瀚 | 快递费计算 | C++ | 解答错误 | 0 | 0 MS | 240 KB | 246 | 2024-01-23 16:50:31 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a=1&&b>1){ cout<<8+(b-1)*1; } if(a=1&&b<=1){ cout<<8*b; } if(a=0&&b<=1){ cout<<10; } if(a=0&&b>1){ cout<<10+(b-2); } return 0; }