All pastes #2073106 Raw Edit

Untitled

public text v1 · immutable
#2073106 ·published 2011-06-01 06:05 UTC
rendered paste body
// hello.cpp: Super Awesome AlphaNerd Edition
// Description: a program that prints the immortal saying "hello world"
// Then it does it AGGAIN!!! 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 = 1; c<=6; c++){
		
		for(int j = 1; j <= 4; j++){
			cout << "Hello World! " << endl;
		}
	}
 return 0;
}