0
I can't run "movie ticket" on my eclipse
I run it on my eclipse but it doesn't work
10 ответов
+ 2
Please code attempt?
+ 1
What exact error you got
+ 1
Thank you so much!
+ 1
You help me a lot
0
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner read = new Scanner(System.in);
String movie = read.nextLine();
int row = read.nextInt();
int seat = read.nextInt();
Ticket ticket = new Ticket(movie, row, seat);
System.out.println("Movie: " + ticket.getMovie());
System.out.println("Row: " + ticket.getRow());
System.out.println("Seat: " + ticket.getSeat());
}
}
class Ticket {
private String movie;
private int row;
private int seat;
//complete the constructor
public Ticket(String movie,int row,int seat) {
this.movie= movie;
this.row=row;
this.seat=seat;
}
public String getMovie() {
return movie;
}
public int getRow() {
return row;
}
public int getSeat() {
return seat;
}
}
0
I can't run it and i don't know why
0
Please share the code so we can easily understand what's your error or doubt.
0
I share it above
0
https://code.sololearn.com/c8PgE639doNy/?ref=app
See the code, now it's run
0
Welcome 😊