Untitled


SUBMITTED BY: Guest

DATE: June 27, 2014, 10:58 p.m.

FORMAT: Text only

SIZE: 465 Bytes

HITS: 1058

  1. #include <iostream>
  2. #include <math.h>
  3. #include <time.h>
  4. using namespace std;
  5. void main (){
  6. setlocale(LC_ALL,"rus");
  7. int H,M,S;
  8. cout<<"введите колличество часо,минут, секунд\n";
  9. cin>>H>>M>>S;
  10. if(S+1<60)
  11. cout<<H<<M<<S+1;
  12. else {
  13. if(M+1<60)
  14. cout<<H<<M+1<<"00\n";
  15. else
  16. {
  17. if(H+1<24)
  18. cout<<H+1<<"00"<<"\n"<<endl;
  19. else
  20. cout<<"00"<<"00"<<"00\n";
  21. }
  22. }
  23. }

comments powered by Disqus