Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The program says that x=y if y>50. When prompted, I enter y=40. So why does the program output x: 40? I thought that x=y only
The program says that "x=y" if "y>50". When prompted, I enter y=40. So why does the program output "x: 40"? I thought that x=y only when y is greater than 50. Please explain clearly.
int x = 0; int y = 0; System.out.print("Please enter y: "); Scanner in = new Scanner(System.in); y = in.nextInt(); if (y > 50); { x = y; } System.out.println("x: " + x); */Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started