Advertisement
BladeMechanics

Timer

Sep 9th, 2017
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include<conio.h>
  2. #include<stdio.h>
  3. #include<Windows.h>
  4. void main()
  5. {
  6.     printf("\n\n\t\tPress any key to begin.");
  7.     _getch();
  8.     printf("\n\n\tGet ready! In...3");
  9.     Sleep(1000);
  10.     printf("...2");
  11.     Sleep(1000);
  12.     printf("...Lets go!");
  13.     Sleep(1000);
  14. } //Sleep(seconds*1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement