CJCoding With Joseph
15per day

Triple Constructor - Recipe

Create a class named Recipe with three private members: String name, int servings, String difficulty.

Requirements:
1. Create a constructor Recipe(String name, int servings, String difficulty) that sets all three fields.
2. Create a public toString() that returns: "name (servings) - difficulty".

IMPORTANT: Do NOT write a main method. A hidden Main will create new Recipe("Pasta", 4, "Easy") and print the object.

Expected Output:
Pasta (4) - Easy

Expected Output:

Pasta (4) - Easy
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.