Untitled
public text v1 · immutable// 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;
}