Skip to main content

Nested while Loops in Java example

 public class WhileElevator {

public boolean doorOpen=false;
 public int currentFloor = 1;
 public int weight = 0;

 public final int CAPACITY = 1000;
 public final int TOP_FLOOR = 5;
 public final int BOTTOM_FLOOR = 1;

 public void openDoor() {
 System.out.println(“Opening door.”);
 doorOpen = true;
 System.out.println(“Door is open.”);
 }

 public void closeDoor() {
 System.out.println(“Closing door.”);
 doorOpen = false;
 System.out.println(“Door is closed.”);
 }

 public void goUp() {
 System.out.println(“Going up one floor.”);
 currentFloor++;
 System.out.println(“Floor: “ + currentFloor);
 }

 public void goDown() {
 System.out.println(“Going down one floor.”);
 currentFloor--;
 System.out.println(“Floor: “ + currentFloor);
 }

 public void setFloor() {

 // Normally you would pass the desiredFloor as an argument to the
 // setFloor method. However, because you have not learned how to
 // do this yet, desiredFloor is set to a specific number (5)
 // below.

 int desiredFloor = 5;

 while (currentFloor != desiredFloor)
 if (currentFloor < desiredFloor) {
 goUp();
 }
 else {
 goDown();
 }
 }

 public int getFloor() {
 return currentFloor;
 }

 public boolean checkDoorStatus() {
 return doorOpen;
 }
 }

Comments

Popular posts from this blog

Defination of the essential properties of operating systems

Define the essential properties of the following types of operating sys-tems:  Batch  Interactive  Time sharing  Real time  Network  Parallel  Distributed  Clustered  Handheld ANSWERS: a. Batch processing:-   Jobs with similar needs are batched together and run through the computer as a group by an operator or automatic job sequencer. Performance is increased by attempting to keep CPU and I/O devices busy at all times through buffering, off-line operation, spooling, and multi-programming. Batch is good for executing large jobs that need little interaction; it can be submitted and picked up later. b. Interactive System:-   This system is composed of many short transactions where the results of the next transaction may be unpredictable. Response time needs to be short (seconds) since the user submits and waits for the result. c. Time sharing:-   This systems uses CPU scheduling and multipro-gramming to provide econ...

AirBnB Infographic Journey to IPO

  Full Post at  https://techpomelo.com/2020/10/infographics-airbnb-milestone-journey-to-ipo/