...

/

Challenge 4: Overload the Square Sum Function

Challenge 4: Overload the Square Sum Function

In this challenge, we have to overload the function that we created in the previous lesson.

Problem statement

In the previous challenge, we implemented the function squareSum(float num1, float num2, float num3) which takes three numbers, squares them, and returns their sum. For this challenge, we have to ...