Challenge 1: Square Numbers and Return their Sum
Explore how to implement a Java method in a class that takes three numbers, squares each, and returns their total sum. This lesson helps you understand method creation and basic arithmetic operations within object-oriented programming.
We'll cover the following...
Problem Statement
Implement a method squareSum(double num1, double num2, double num3) in a class SquareSum which takes three numbers, square them and returns their sum.
Input:
Three floating point numbers.
Output:
Sum of the squares of passing numbers
Sample Input
2, 3, 4
Sample Output
29
Coding Exercise
First, take a close look and design a step-by-step algorithm before jumping to the implementation. This problem is designed for your practice, so initially try to solve it on your own. If you get stuck, you can always refer to the solution provided in the solution section.
Good Luck!
The solution will be explained in the next lesson.