Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131187 舒韵天 09计算算数表达式 C++ Compile Error 0 MS 0 KB 285 2025-09-21 12:51:23

Tests(0/0):


Code:

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


Run Info:

Main.cc: In function 'int main()':
Main.cc:6:5: error: expected initializer before 'cin'
     cin>>a>>op>>b;
     ^
Main.cc:7:12: error: 'op' was not declared in this scope
     switch(op)
            ^
Main.cc:8:28: error: break statement not within loop or switch
         case '+':cout<