(in java) add a part where you  print user information and update the continue watching list in program 2 Program 1:   class Netflix { public String movies[] = new String[10]; public String trendingTop5[] = new String[5]; public String continueWatching[] = new String[5]; public String username; public String password; private boolean isAuthenticated; public double balance; public int subscriberSinceYear;

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 12SA
icon
Related questions
Question

(in java)

add a part where you  print user information and update the continue watching list in program 2

Program 1:

 

class Netflix {
public String movies[] = new String[10];
public String trendingTop5[] = new String[5];
public String continueWatching[] = new String[5];
public String username;
public String password;
private boolean isAuthenticated;
public double balance;
public int subscriberSinceYear;

public void logininfo() {
Scanner input = new Scanner(System.in);
System.out.println("Enter the username");
String username = input.nextLine();
System.out.println("Enter the password");
String password = input.nextLine();
boolean isAuthenticated = true;

System.out.println(isAuthenticated + " , You have successfully logged in ");
System.out.println();
}

public void trendingList() {
Scanner input = new Scanner(System.in);
String[] items = new String[5];
System.out.println("Enter the top 5 trending item of the week");
int i;
for (i = 0; i < 5; ++i) {
items[i] = input.nextLine();
Arrays.sort(items);
}


System.out.println("Top 5 trending items of the week are: ");
int j;
for (j = 0; j < 5; j++) {
System.out.println(items[j]);
}
}
}

 

 

 

Program 2:

public class NetflixDemo {
public static void main(String[] args) {
Netflix user1 = new Netflix();
user1.logininfo();
user1.trendingList();

Netflix user2 = new Netflix();
user2.logininfo();
user2.trendingList();
}
}

Expert Solution
steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Program on Numbers
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning