Advertisement
desislava_topuzakova

01. Clock

Feb 10th, 2024
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. //часове: 0 до 23
  6. for (int hour = 0; hour <= 23; hour++)
  7. {
  8. //минути: 0 до 59
  9. for (int minute = 0; minute <= 59; minute++)
  10. {
  11. cout << hour << ":" << minute << endl;
  12. }
  13. }
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement