โ Back to Methods
Question 364
Method Calling Another Method
Method Calling Another Method
Write two methods.square(int n)returnsn * n.sumOfSquares(int a, int b)returnssquare(a) + square(b)by callingsquaretwice. CallsumOfSquares(3, 4)and print the result: 25 ThesumOfSquaresmethod must callsquare, 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.