Advertisement
SteelK

Untitled

Dec 19th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. void Time::setTime()
  2. {
  3.     char dots;
  4.     while(1){
  5.         cin >> hour >> dots >> minute >> dots >> second;
  6.         if(second < 60 && minute < 60)
  7.             break
  8.         else
  9.             cout << "repiat set..."
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement