Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147366 赵奕杰 09计算算数表达式 C++ Accepted 0 MS 276 KB 226 2026-02-04 16:26:24

Tests(5/5):


Code:

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