Make Simple Calculator Using Switch Case
# include <iostream> using namespace std; int main() { char operation; float no1, no2; cout << “Enter operationerator either + or – or * or /: “; cin >> operation; cout << “Enter two operationerands: “; cin >> no1 >> no2; switch(operation) { case ‘+’:… Read More »Make Simple Calculator Using Switch Case