Example output: EAPersonaNUAF-Teaching ES201-$20161Homework Week 4Wk4 Problem2.e
ID: 3668879 • Letter: E
Question
Example output: EAPersonaNUAF-Teaching ES201-$20161Homework Week 4Wk4 Problem2.exe" Enter a number between 1 and 18: 19 Size is not within the appropriate range. Please Enter again: 10 1 2 3 4 5 6 789 10 1 1 2345 678 9 10 2* 24 6 8 10 12 14 16 18 20 3* 3 6 912 15 18 21 24 27 30 4 4 8 12 16 20 24 28 32 36 40 5* 5 10 15 20 25 30 35 40 45 50 6* 6 12 18 24 30 36 42 48 54 60 7* 14 21 28 35 42 49 56 63 70 8* 8 16 24 32 40 48 56 64 72 80 9* 9 18 27 36 45 54 63 72 81 90 10* 10 20 30 40 50 60 70 80 90 100 Process returned (x execution time3.496s Press any key to continueExplanation / Answer
#include<iostream.h>
#include<conio.h>
#include<math.h>
#include<iomanip.h>
using namespace std;
void print(int end)
{
int i;
cout<<setw(5)<<" ";
for(i=1;i<=end;i++)
{
cout<<setw(4) << i <<" ";
}
cout<<endl;
} //end of print()
int main()
{
int start,end;
cout<<"enter a number between 1 and 18";
cin>>end;
if( end<1 || end >18)
{
cout<<"size is not within the proper range.please enter again";
cin>>end;
}
print(end);
for(i=0;i<end;++i)
{
for(j=0;j<end;++j)
{
cout<< setw(3)<< ((j+1)*(i+1)) <<" ";
}
cout<<endl;
}
return 0;
}
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.