CJCoding With Joseph

Build a Formatted Description

The interface IProduct declares string Describe(). The Book class stores a title and a price. Complete Describe() so it returns the title, then  costs $, then the price. Do NOT write a Main method.

For a Book with title C# Basics and price 15 the program prints:
C# Basics costs $15

Expected Output:

C# Basics costs $15
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.