Write a program which is required to process the time of a
clock in hours and minutes, entered from the keyboard. With
this program, there are two requirements for any data
entered by a user:
1. The data must be of the correct type (in this case, two
ints).
2. The data must be in the correct range: this means that,
for the minutes, negative numbers and any number above 59
must be rejected; for the hours, negative numbers and any
number above 23 must be rejected.
Output error message for invalid data input.
Output the time one and a half hour after the time input.
i.e.
Hour: 22
Min: 32
One and a half hour after 22:32 is 00:02


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

How do c++ struct differs from the c++ class?

0 Answers  


How do you generate a random number in c++?

0 Answers  


Do you know what are the new features that iso/ansi c++ has added to original c++ specifications?

0 Answers  


What is the difference between struct and class?

1 Answers  


class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4

4 Answers   Quark,






What is std :: endl?

0 Answers  


Array base access faster or pointer base access is faster?

0 Answers  


Can we delete this pointer in c++?

0 Answers  


Is there a datatype string in c++?How is the memory allocation?

3 Answers  


Is swift a good first language?

0 Answers  


What are iterators in c++?

0 Answers  


What is enum c++?

0 Answers  


Categories