Guest User

Untitled

a guest
Jan 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3.  
  4. int main()
  5. {
  6.     while(true){
  7.         system("CLS");
  8.     for(int i = 0; i < 15; i ++)
  9.     {
  10.         for(int x = 0; x < 25; x ++)
  11.         {
  12.             std::cout << (char)rand();
  13.         }
  14.         std::cout << std::endl;
  15.     }
  16.     }
  17.  
  18.     system("PAUSE");
  19.     return 0;
  20. }
Add Comment
Please, Sign In to add comment