A code for Simple Calculator with Switch statement jpr February 24, 2021 Switch #include <iostream>#include <string>using namespace std;int main (){// decision making int n1, n2; char op; cout<< "Enter your 2 number" <<endl; cin>>n1 ... Read more » 24Feb2021