English
Tamil Nadu Board of Secondary EducationHSC Science Class 11

Write a C++ program to print the multiplication table of a given number. - Computer Science

Advertisements
Advertisements

Question

Write a C++ program to print the multiplication table of a given number.

Short Note

Solution

# include
using namespace std;
int main ()
{

int num;
cout << “Enter Number to find its multiplication table”; cin >> num;
for (int a = 1; a < = 10; a++)
{
cout << num << “*” << a << “=” << num*a << endl;
}
return( );

}

shaalaa.com
Selection Statements
  Is there an error in this question or solution?
Chapter 10: Flow of Control - Evaluation - Section - C [Page 178]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 11 TN Board
Chapter 10 Flow of Control
Evaluation - Section - C | Q 3. | Page 178
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×