CJCoding With Joseph

Private Helper Method

The Calculator class exposes a public method SumOfSquares(int a, int b) that returns a*a + b*b. It must do this by calling a PRIVATE helper method Square(int n) that returns n * n. Do NOT write a Main method.

For SumOfSquares(3, 4) the program prints:
25

Expected Output:

25
Topics:
Encapsulation
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.