Computer Science, asked by Anonymous, 6 months ago

Can anybody help me in this C++

Attachments:

Answers

Answered by vidhitamane202067
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