write a program in c++ to print a table of 7 using any one of the loops
Answers
Answered by
7
#include<iostream.h>
#include<conio.h>
void main()
{ int n,i;
cout<<"Enter limit of multiplication table of 7:"
cin>>n;
for(i=0;i<n;i++)
{
cout<<"7*"<<i<<"="<<7*i<<"\n";
}
getch();
}
vijay4574:
help me all questions
Similar questions