Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
67
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. using namespace std;
  3.  
  4. int main()
  5. {
  6.     cout << "Let's get some syntax highlighting!!";
  7.     cout << endl;
  8.  
  9.     for ( int i=0; i<20; i++ )
  10.     {
  11.         cout << "YEAHH!! \n";
  12.     }
  13.  
  14.     cout << "\n\n\n\n\n\n\n\n" << "C++ FTW!!!!!";
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement