Question: Find three run-time errors in the following program. public class HasErrors { public static void main(String[] args) { int x = 0; int y =
Find three run-time errors in the following program.
public class HasErrors
{
public static void main(String[] args)
{
int x = 0;
int y = 0;
Scanner in = new Scanner("System.in");
System.out.print("Please enter an integer:");
x = in.readInt();
System.out.print("Please enter another integer: ");
x = in.readInt();
System.out.println("The sum is " + x + y);
}
}
Step by Step Solution
3.35 Rating (161 Votes )
There are 3 Steps involved in it
public class HasErrors public static void mainString args int x 0 int y 0 Error 1 We dont have to pa... View full answer
Get step-by-step solutions from verified subject matter experts
