Basic Calculator

Write a program that works as a simple calculator.

1.It reads a character (ch)

2.If ch is among β€˜+’, β€˜-’, β€˜*’, β€˜/’ or β€˜%’ it furthur takes two numbers (N1 and N2 as input). It then performs appropriate appropriate operation between numbers and print the number.

3.If ch is β€˜X’ or β€˜x’, the program terminates.

4.If ch is any other character, the program should print β€˜Invalid operation. Try again.’ and seek inputs again (starting from character).

Provide code for this Problem

@rishank065


Please mark this doubt as resolved and rate as well :slight_smile:

The code you have given is not working

@rishank065
ch == '*' instead of ch == ' * '
in line 8