guitar-player

progress_bar.cpp

Feb 25th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <iostream>
  2. #include <unistd.h>
  3.  
  4. using namespace std;
  5.  
  6.  
  7. int main()
  8. {
  9.  
  10.  for (int i = 0; i <= 10; i++)
  11.  {
  12.   cout << ".";
  13.   sleep(1);
  14.  }
  15.  
  16.  return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment