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