Answer to Question #3332 in C++ for mukunda
Write a program to read two values from user and print the multiplication of those two values?
1
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!
Learn more about our help with Assignments:
C++
Comments
Leave a comment