Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Below is what I currently have. I need to only display the open lockers and instead of true, I need open. How do I do

image text in transcribed
Below is what I currently have. I need to only display the open lockers and instead of true, I need open. How do I do this? public class Lockers { public static void main(String[] args) { boolean[] lockers = new boolean[100]; for(int i=0;iout.println("Locker " + (i+1) + " is " + lockers[i]); } }
A school has 100 lockers and 100 students. All lockers are closed on the first day of school. As the students enter, the first student, denoted S1, opens every locker. Then the second student, S2, begins with the second locker, denoted L2, and closes every other locker. Student S3 begins with the third locker and changes every third locker (closes it if it was open, and opens it if it was closed). Student S4 begins with locker L4 and changes every fourth locker. Student S5 starts with L5 and changes every fifth locker, and so on, until student S100 changes L100. After all the students have passed through the building and changed the lockers, which lockers are open? Write a program to find your answer. The program should display the answer like this: Locker x is open Locker y is open Locker z is open (Hint: Use an array of 100 boolean elements, each of which indicates whether a locker is open (true) or closed (false). Initially, all lockers are closed.) This program should not prompt the user for any information, it should simply print out what lockers are open, one locker per line, just as the output looks like above Call your class Lockers. Your solution should only contain a main ANSWER, YOU NEED TO USE A LOOP! method. DO NOT HARDCODE THE

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

Video Basics

Authors: Herbert Zettl

8th Edition

1305950860, 978-1305950863

Students also viewed these Databases questions