Thread
:
While Loop Table
View Single Post
#
1
17-04-2008, 10:20 AM
shmsa
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
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;
}
shmsa
View Public Profile
Send a private message to shmsa
Visit shmsa's homepage!
Find all posts by shmsa