Answered step by step
Verified Expert Solution
Link Copied!

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.

image text in transcribed

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Using Entity Relationship Diagrams

Authors: Sikha Saha Bagui, Richard Walsh Earp

3rd Edition

103201718X, 978-1032017181

More Books

Students also viewed these Databases questions

Question

Understand how customers respond to effective service recovery.

Answered: 1 week ago