Exercise 2: Implementing Calculator

Let's implement a calculator by using Switch statements

Problem statement

Write a code that will take the following:

  • Two float type variables named num1 and num2

  • a char type variable called Operator. The Operator variable can be passed the following:

    • +,-,* and /

  • Use switch statements to compute the following on the num1 and num2 variables.

    • addition

    • subtraction

    • multiplication

    • division

Sample input

Create a free account to access the full course.

Continue your learning journey with a 14-day free trial.

By signing up, you agree to Educative's Terms of Service and Privacy Policy