Untitled
Anonymous
c_cpp
11/20/2023 1:06 PM
256 B
16
Indexable
#include<iostream>
using namespace std;
int main() {
int n;
cin >> n;
for (int i = 1; i <= 10; i++) {
cout << n << " * " << i << " = " << n * i << endl;
}
}
Editor is loading...
Leave a Comment