Exercise 2: Implementing Calculator

In this exercise, you are required to implement a calculator by using Switch statements

We'll cover the following

Problem Statement

Write a code which will take:

  • 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:

    • addition,
    • subtraction,
    • multiplication
    • division

Get hands-on with 1200+ tech skills courses.