<a href=”https://t4tutorials.com/shamils-memory-table/”><img class=”size-full wp-image-48543 aligncenter” src=”https://t4tutorials.com/wp-content/uploads/shamil-memory-table.webp” alt=”shamil memory table” width=”1255″ height=”715″ /></a>
C++ program to show a table of a number.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <iostream> using namespace std; int main() { int n; cout << "Please Enter a positive integer: "; cin >> n; for (int i = 1; i <= 4; ++i) { cout << n << " * " << i << " = " << n * i << endl; } return 0; } |



1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <iostream> using namespace std; int main() { int n; cout << "Please Enter a positive integer: "; cin >> n; for (int i = 1; i <= 10; ++i) { cout << n << " * " << i << " = " << n * i << endl; } return 0; } |