All pastes #2035245 Raw Edit

clueless

public cpp v1 · immutable
#2035245 ·published 2010-12-31 19:52 UTC
rendered paste body
// 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;}