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; } |
