Challenge 1: Square Numbers and Return their Sum
In this challenge, you need to implement a method which squares passing variables and return their sum.
Problem Statement #
Implement a method squareSum(double num1, double num2, double num3)
in a class SquareSum
which takes three numbers, square them ...