Question: Write a program that reads one non-negative integer as input, which represents the number of seconds elapsed after 12:00 PM. The program should output the
Write a program that reads one non-negative integer as input, which represents the number of seconds elapsed after 12:00 PM. The program should output the end time, i.e. start time (12:00 PM) added to the elapsed time. The program should halt if a negative integer is entered with an appropriate message printed to the console. Assume that only numbers are entered as input. Note that depending on the number of seconds entered as input, the end time might change from PM to AM. Below are a few sample runs: java



Sample run! Enter number of seconds: 45 End time: 12:00:45 PM Sample run II Enter number of seconds: 73 End time: 12:01:13 PM Sample run III Enter number of seconds: 12458 End time: 03:27:38 PM Sample run IV Enter number of seconds: 49345 End time: 01:42:25 AM
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
