CJCoding With Joseph
15per day

Triple Constructor - Course

Create a class named Course with three private members: String name, String code, int credits.

Requirements:
1. Create a constructor Course(String name, String code, int credits) that sets all three fields.
2. Create a public toString() that returns: "code: name (credits)".

IMPORTANT: Do NOT write a main method. A hidden Main will create new Course("Biology", "BIO101", 3) and print the object.

Expected Output:
BIO101: Biology (3)

Expected Output:

BIO101: Biology (3)
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.