Answer to Question #3332 in C++ for mukunda

Question #3332
Write a program to read two values from user and print the multiplication of those two values?
1
Expert's answer
2011-07-13T11:08: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
APPROVED BY CLIENTS