Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
125347 黄子轩 简单计算器 C++ 运行出错 83 0 MS 256 KB 331 2024-01-23 16:47:37

Tests(5/6):


#include<bits/stdc++.h> using namespace std; int main() { int p,s; char w; cin>>p>>w>>s; switch(w){case'+': cout<<p+s;break; case'-': cout<<p-s;break; case'*': cout<<p*s;break; case'/': cout<<p/s;break; default:cout<< "Invalid operator!";break;} switch(s){ case 0:cout<<"Divided by zero!";break; } }


测评信息: