Can anybody help me in this C++
Attachments:
Answers
Answered by
0
Answer:
MARK AS BRAINLIEST PLZ PLZ
Explanation:
#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;
}
Attachments:
Similar questions