Computer Science, asked by vijay4574, 1 year ago

write a program in c++ to print a table of 7 using any one of the loops

Answers

Answered by marpitasrao
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
marpitasrao: Well I did whatever I could coz i have learnt only c++ yet! : )
vijay4574: please help
Similar questions