Using Java Write Program Contains Array Array Contain Titles Favorite Books Games Shows Mo Q37124799

Using Java, write a program that contains an array. The arraywill contain the titles of your favorite books, games, shows, ormovies. You may make it as large as you desire, but only enter thetitles through user input.

Sample output: “Dragon Wing”, “Doom Patrol”, “Pokemon”, “StarWars”

NOTE: Include step-by-step instructions in hidden notes.


Solution


import java.util.Scanner;public class PrintMovies { public static void main(String[] args) { Scanner in = new Scanner(System.in); String[] movies = new String[5]; for (int i =

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.