Advertisement
Guest User

adl

a guest
Oct 12th, 2009
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <cstdio>
  2. #include <cstdlib>
  3. #include <ctime>
  4.  
  5. using namespace std;
  6.  
  7.  
  8. int main()
  9. {
  10.     srand(time(NULL));
  11.     for (;;)
  12.     {
  13.         printf("%d", rand());
  14.         getchar();
  15.     }
  16.     return 0;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement