Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 287 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 287 Bytes

New

cool code for multitable generated #include 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;

}