Code:
int createArithmeticSeq ( int first, int difference)
{
cout<<"Please enter the first value: ";
cin>>first;
cout<<"Please enter the difference: ";
cin>>difference;
cout<<endl;
int seq[4][4];
for (int i=1; i<=16; i++)
{
for ( int row=0;
Leave a comment: