₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,327,370 members, 8,430,697 topics. Date: Saturday, 20 June 2026 at 10:22 PM

Toggle theme

XrayXena's Posts

Nairaland ForumXrayXena's ProfileXrayXena's Posts

1 (of 1 pages)

ProgrammingMy Programming Park (rise Of A Learner) by XrayXena(op): 9:10am On Oct 15, 2017
I started learning programming few days ago with c++. I'm enjoying it. A simple program to print text six times.




#include <iostream>
using namespace std;

int main() {
//code goes here
int x=0;
string Bleep="i love pussy";
for (x=0; x<7; x++) {
cout << Bleep <<endl;
};
return 0;
}

1 (of 1 pages)