Computer Science, asked by nitaronghe9, 10 months ago

Write a code to print table of a number, say 5.answer​

Answers

Answered by shirinshaikh7543
1

Answer:

4y + x2 \\  \\  \\  \\  \\  = 6xy

Answered by indraairya44
0

Answer:

Here is ur program

This can be used in c++

// CPP program to print table of a number

#include <iostream>

using namespace std;

int main()

{

int n = 5; // Change here to change output

for (int i = 1; i <= 10; ++i)

cout << n << " * " << i << " = "

<< n * i << endl;

return 0;

}

hope it helps

plz mark me as brainliest

Similar questions