Guest User

Untitled

a guest
Jul 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8.     int i;
  9.     while (true)
  10.     {
  11.     cout << "\a";
  12.     continue;
  13.  
  14.         if(i%8)
  15.         {
  16.             cout<<"\t";
  17.         }
  18.         else
  19.         {
  20.             cout<<"\n";
  21.         }
  22.         cout<< (char) i;
  23.        
  24.         i++;
  25.     }
  26.     //system(pause);
  27.     return 0;
  28. }
Add Comment
Please, Sign In to add comment