Computer Science, asked by essa86780, 4 hours ago

Write a program in C++ that asks the user to enter 10 integers using loops and multiplies each number times 10 and display the results?

Answers

Answered by jadavneil99
0

Answer:

Put the cin >> num inside the for loop. Put mult*=num inside the for loop. And of course initialize mult=1 before the for loop

Similar questions