CJCoding With Joseph
15per day

Course Class Formatting

Create a class Course with private fields name (string), code (string), and credits (int).

Requirements:
1. Constructor Course(string name, string code, int credits)
2. toString() returns: "code: name (credits)"

Do NOT write a main function.

Expected Output:

BIO101: Biology (3)
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.