Advertisement
Spocoman

09. Clock

Sep 8th, 2023
985
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     for (int h = 0; h < 24; h++) {
  7.         for (int m = 0; m < 60; m++) {
  8.             cout << h << " : " << m << endl;
  9.         }
  10.     }
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement