View Single Post
  #1  
Old 17-04-2008, 10:20 AM
shmsa's Avatar
shmsa shmsa is offline
Grown up punk

 
Join Date: Oct 2007
Location: Muslim Town Multan
Posts: 195
Contact Number: 0322-6196713
Program / Discipline: BSIT
Class Roll Number: 07-22
shmsa is a jewel in the roughshmsa is a jewel in the roughshmsa is a jewel in the roughshmsa is a jewel in the rough
lectures While Loop Table

Table of 2 Using While loop
Quote:
#include <iostream>
using namespace std;
int main()
{
int n;
n=1;
while (n<=10)
{
cout<<"2 X "<<n<<"="<<2*n<<endl;
n++;
}
return 0;
}

Reply With Quote