Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. main()
  5. {
  6.       int MIN,SEG;
  7.       printf("10:00\n");
  8.       system("PAUSE");
  9.       for (MIN=9 ; MIN <= 0 ; MIN = MIN - 1)
  10.       {
  11.           for(SEG = 59 ; SEG <= 0 ; SEG = SEG - 1)
  12.                     printf("%d : %d\n",MIN,SEG);
  13.           };
  14.           getchar();
  15.  
  16.   system("PAUSE"); 
  17.   return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement