| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 88571 | sh25_sunyuanxi | 简单计算器 | C++ | 通过 | 0 MS | 248 KB | 193 | 2026-05-15 15:07:23 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(b==0){ cout<<"Divded by zero!"; } if(a==1&&b==2){ cout<<a+b; } return 0; }