All pastes #2073107 Raw Edit

Anonymous

public text v1 · immutable
#2073107 ·published 2011-06-01 06:08 UTC
rendered paste body
// hello.cpp: Super Awesome AlphaNerd Edition
// Description: a program that prints the immortal saying "hello world"
// Then it does it AGAIN!!! in the end I want to have
// It write Hello world 4 times on 6 lines

#include <iostream>
using namespace std;

int main() {
	for(int c = 0; c<6; c++){
		
		for(int j = 0; j < 4; j++){
			cout << "Hello World! ";
		}
		
		cout  << endl;
	}
 return 0;
}