Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150360 赵奕杰 09计算算数表达式 C++ Accepted 1 MS 272 KB 248 2026-03-27 18:55:36

Tests(5/5):


Code:

#include<bits/stdc++.h> using namespace std; int a,b; char op; int main(){ cin>>a>>op>>b; switch(op){ case '+': cout<<a+b;break; case '-': cout<<a-b;break; case '*': cout<<a*b;break; case '/': cout<<a/b;break; } return 0; }