Answer to Question #3331 in C++ for mukunda

Question #3331
Write a program to display the multiplication table for a given integer up to 10 using a 'for' loop.
1
Expert's answer
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS