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

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int a,op,b; 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:7:28: error: break statement not within loop or switch
         case '+':cout<