Question #3331

Write a program to display the multiplication table for a given integer up to 10 using a 'for' loop.

Expert's answer

#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;
}
LATEST TUTORIALS
APPROVED BY CLIENTS