โ Back to Classes
Question 30
Recipe Class
Recipe Class
Create a class Recipe with private fields name (string), servings (int), and difficulty (string). Requirements: 1. Constructor Recipe(string name, int servings, string difficulty) 2. toString() returns: "name (servings) - difficulty" Do NOT write a main function.
Expected Output:
Pasta (4) - Easy
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.