1
Student Name: __________________
Class and Section __________________
Total Points (20 pts) __________________
Due: November 15, 2017 before the class
Project: Locker Puzzle
CSCI 1301 Introduction to Programming Principles
Armstrong Atlantic State University
Problem Description:
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
Design:
(Describe the major steps for solving the problem.)
2
Testing: (Describe how you test this program)
Submit the following items:
1. Print this Word file and Submit to me before the class on the due day
2. Compile, Run, and Submit to LiveLab (you must submit the program regardless
whether it complete or incomplete, correct or incorrect)
3
Solution Code:
public class Test {
public static void main(String[] args) {
}
}