CJCoding With Joseph

Report Template Method

Report defines the fixed method Generate that wraps a body between START and END. It calls the abstract method Body, which subclasses fill in. Implement Body in SalesReport so it returns "sales: 100". Do NOT write a Main method.

The program prints:

START
sales: 100
END

Expected Output:

START
sales: 100
END
Topics:
Inheritance
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.