BZU PAGES: Find Presentations, Reports, Student's Assignments and Daily Discussion; Bahauddin Zakariya University Multan

BZU PAGES: Find Presentations, Reports, Student's Assignments and Daily Discussion; Bahauddin Zakariya University Multan (http://bzupages.com/)
-   Computer programming for IT (http://bzupages.com/27-computer-programming/)
-   -   While Loop Table (http://bzupages.com/f27/while-loop-table-351/)

shmsa 17-04-2008 10:20 AM

While Loop Table
 
Table of 2 Using While loop
Quote:

#include
using namespace std;
int main()
{
int n;
n=1;
while (n<=10)
{
cout<<"2 X "< n++;
}
return 0;
}

shmsa 17-04-2008 10:22 AM

Re: While Loop Table
 
General Table Code Using While Loop
Quote:

#include
using namespace std;
int main()
{
int tableof,number;
cout<<"Table of "< cin>>tableof;
number=1;
while (number<=10)
{ cout< number++;
}
return 0;
}


All times are GMT +5. The time now is 11:10 AM.

Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.