CJCoding With Joseph

Method Calling Another Method

Write two methods. square(int n) returns n * n. sumOfSquares(int a, int b) returns square(a) + square(b) by calling square twice. Call sumOfSquares(3, 4) and print the result:

25

The sumOfSquares method must call square, not compute the squares directly.

Expected Output:

25
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.