Answer to Question #3331 in C++ for mukunda
Write a program to display the multiplication table for a given integer up to 10 using a 'for' loop.
1
2011-07-13T11:07:30-0400
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int given_integer = 7;
for (int i = 1; i <= given_integer; ++i) {
& for (int j = 1; j <= given_integer; ++j) {
& cout << setw(2) << i * j << " ";
& }
& cout << endl;
}
return 0;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment