โ Back to Classes
Question 108
Movie With Title and Rating
Movie With Title and Rating
Create a class named Movie with two private members: String title and int rating.
Requirements:
1. Create a constructor Movie(String title, int rating) that sets both fields.
2. Create getTitle() and getRating() methods.
IMPORTANT: Do NOT write a main method. A hidden Main will create new Movie("Dune", 9) then print title and rating on separate lines.
Expected Output:
Dune
9
Expected Output:
Dune 9
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.