Reference no: EM133344541
Assignment
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 SI, 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 55 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.)
Analysis:
(Describe the problem including input and output in your own words.)
Design:
(Describe the major steps for solving the problem.)
SYSTEM ANALYSIS:
1.PROBLEM DESCRIPTION:
This program will help to calculate the energy required in joule to heat certain amount of water from its initial temperature to the final temperature.
2.INPUT:
• Program will prompt the user to enter the values for variables as an input.
• Variables are Initial temperature , final temperature and the amount of water heated .
• It can also take decimal values as an input.
• All inputs are taken in their respective SI units.
3.OUTPUT/RESULT:
• Results will be produced after processing the input by using the following formula:
Energy = Waterweight*(final temperature - initial temperature)
*4184
• This program will produce results for every kind of numeric input (positive integer, negative integer,zero, fraction etc. ) for temperature.
• Since weight of water can never be negative , so program will not produce results under such conditions .