Write a program to print the
multiplication table of the number entered by the user.
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "Enter a positive integer: ";
cin >> n;
for (int i = 1; i <= 10; ++i) {
cout << n << " * " << i << " = " << n * i << endl;
}
return 0;
}
Sunday, 12 November 2017
Write a program to print the multiplication table of the number entered by the user.
Subscribe to:
Post Comments (Atom)
Write a program, that takes 16-Elements in Two-Dimensional-Array that has 4 rows & 4 columns, then display the diagonal of Matrix.
Write a program, that takes 16-Elements in Two-Dimensional-Array that has 4 rows & 4 columns, then display the diagonal of Matrix. ...
0 on: " Write a program to print the multiplication table of the number entered by the user."