โ Back to Interfaces
Question 601
An Interface With Multiple Methods
An Interface With Multiple Methods
The interfaceIMathOpsdeclares bothAddandSubtract. Complete theMathOpsclass soAddreturns the sum andSubtractreturns the difference (a - b). Do NOT write aMainmethod. ForAdd(7, 3)andSubtract(7, 3)the program prints each result on its own line: 10 4
Expected Output:
10 4
Topics:
Interfaces
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.