Something must have happened during my cut 'n paste, becase all of my arrays were two dimensional. I'll try again:
#include <iostream>
using std::cout;
using std::endl;
#include <iomanip>
using std::setw;
#include <ctime>
void main()
{
const int first = 5, second = 5;
int...
#include <iostream>
using std::cout;
using std::endl;
#include <iomanip>
using std::setw;
#include <ctime>
void main()
{
const int first = 5, second = 5;
int firstArray[first][second] = {0};
int secondArray[first][second] = {0};
int thirdArray[first][second]= {0};
int fourthArray[]=...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.