Advertisement
Felanpro

Kapslade loopar

Mar 28th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdlib.h> //for system()
  3. #include "felixclass.h" //Including my other header file.
  4.  
  5. using namespace std;
  6.  
  7. //Basically means 7x2.
  8. int main()
  9. {
  10.  
  11.     for(int x = 0;x < 7;x++)
  12.     {
  13.         for(int y = 0;y < 2;y++)                          
  14.         {
  15.             cout << "Hello World!" << endl;
  16.         }
  17.     }
  18.  
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement