Java Programming 1.7
Instructions
Write, compile, and test a class that displays your favorite movie quote, the movie it comes from, the character who said it, and the year of the movie.
MovieQuoteInfo.java
class MovieQuoteInfo {   public static void main(String[] args) {     // Write your code here, italics are changeable     System.out.println("\"Don’t worry about what other people think. Hold your head up high and plunge forward.\"");     System.out.println("My Hero Academia");     System.out.println("Izuku Midoriya");     System.out.println("2014");   } }












