Exercise 2: Implementing Calculator

Let's implement a calculator by using Switch statements

We'll cover the following

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

Coding challenge

Use the following playground to write your code. Good luck!

Create a free account to access the full course.

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