Answer to Question #256826 in Java | JSP | JSF for addy

Question #256826

Create a class name movie, which describes a movie you can buy at an online movie store. The Movie class has three fields


1
Expert's answer
2021-10-27T00:48:02-0400
public class Movie {
  String name = "The rock";
  int price=10000;
  int year =2021;


  public static void main(String[] args) {
    Main myObj = new Main();
    System.out.println("Movie name is: "+myObj.name);
    System.out.println("The price of the movie is: "+myObj.price);
    System.out.println("Production year is: "+myObj.year);
  }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS