Home
Make Money Online
C++ Guide
Programs
_Multi DropDown
__DropDown 1
__DropDown 2
__DropDown 3
_ShortCodes
_SiteMap
Home
Programs
Program to print table by do while loop.
Program to print table by do while loop.
Amarjeet singh
March 27, 2018
Program:-
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int n;
cout<<"\nEnter the number to print the table";
cin>>n; // table to print
cout<<endl;
int i =1;
do
{
cout<< n <<"*" << i <<"="<<n*i<<endl;
i++;
}
while(i<=10);
getch();
}
Output:-
Post a Comment
0 Comments
Pages
Home
Sitemap
Basics
Programs
About
2018
35
Business
Recent
Comments
Social Plugin
Popular Posts
Installing Turbo C++ on your computer.
May 10, 2018
Program to print table by for loop.
March 27, 2018
Program to check given year is leap or not.
March 31, 2018
Facebook
Flickr Widget
Powered by Blogger
0 Comments