/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author STUDENT */ class Movie { String title; String genre; String cinema; int rating; public Movie() { } void playIt(String a){ System.out.println(a+" "+"Playing on cinema"+cinema); System.out.println("Genre: "+genre); System.out.println("Rating: "+rating+" Stars"); System.out.println(""); } } public class MovieTestDrive { /** * @param args the command line arguments */ public static void main(String[] args) { System.out.println("List of Movies Now Showing"); Movie one = new Movie(); one.title = "Gone with the Stock"; one.genre = "Tragic"; one.rating = 3; one.cinema = "1"; one.playIt(one.title); Movie two = new Movie(); two.title = "Lost in Cubicle Space"; two.genre = "Comedy"; two.rating = 4; two.cinema = "2"; two.playIt(two.title); Movie three = new Movie(); three.title = "Byte Club"; three.genre = "Action"; three.rating = 5; three.cinema = "3"; three.playIt(three.title); } }