โ Back to Methods
Question 360
Average of Two Method
Average of Two Method
Write a methodaverage(int a, int b)that returns the average of the two values as adouble. Divide by2.0so the result keeps its decimal part. Call it with3and4and print the result: 3.5 UseSystem.out.println.
Expected Output:
3.5
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.