CJCoding With Joseph
15per day

Media and Playable Song

Create a Song class that extends an abstract Media class and implements Playable.

Requirements:
- Media has a protected String title and a constructor.
- Playable declares play() and duration().
- Song stores an int seconds and implements play() to print "Playing: <title>".
- duration() returns seconds.

Print exactly in play(), and return seconds from duration(). Do NOT write a main method.

Expected Output:

Playing: Echo
180
Topics:
Classes
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.