Computer Science, asked by abdullahabssi888, 5 hours ago

3. Write a program that converts from 24-hour time to 12-hour time. The following is a sample dialogue: Enter time in 24-hour notation: 13:07 That is the same as 1:07 PM Again?(y/n) y Enter time in 24-hour notation: 10:15 That is the same as 10:15 AM Again?(y/n) y Enter time in 24-hour notation: 10:65 There is no such time as 10:65 Try Again: Enter time in 24-hour notation: 16:05 T hat is the same as 4:05 PM Again?(y/n) n End of program You will define an exception class called TimeFormatMistake. If the user enters an illegal time, like 10:65 or even gibberish like 8&*68, then your program will throw and catch a TimeFormatMistake.

Answers

Answered by bharathivishnu2006
0

Explanation:

10:65 is actually not possible

but we can convert it into 11:5Am

Similar questions