clueless
public cpp v1 · immutable// for loop.:)#include <csdtio>#include <cstdlib>#include <iostream>using namespace std;int main(int nNumberofArgs, char* pszArgs[]){ // input loop count int nLoopCount; cout << "Enter loop count: "; cin >> nLoopCount; // count up to the limit. for (int i = 1; i <= nLoopCount; i++) { cout << "We've Finished " << i << "loops" << end1; } // wait until user is ready to terminate program. system("PAUSE"); return 0;}