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

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:8:28: error: break statement not within loop or switch
         case '+':cout<