Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
125434 | 唐钧 | 简单计算器 | C++ | 通过 | 100 | 0 MS | 240 KB | 436 | 2024-01-23 16:56:23 |
#include<bits/stdc++.h> using namespace std; int main() { long long a,b; char s; double d; cin>>a>>s>>b; if(s=='+') { cout<<a+b; return 0; } if(s=='-') { cout<<a-b; return 0; } if(s=='*') { cout<<a*b; return 0; } if(s=='/'&&b!=0) { d=a/b; cout<<d; return 0; } if(s=='/'&&b==0) { cout<<"Divided by zero!"; return 0; } cout<<"Invalid operator!"; return 0; }