INCLUDED:
Project: Perfect Square Table
A “Perfect Square Table” is a square of positiveintegers such that the
sum of each row, column, and diagonal is the sameconstant.
This program reads square tables from files, checks ifthey are perfect squares,
and displays messages such as “This is a PerfectSquare Table with a constant of 34!”
or “This is not a Perfect Square Table”.
NAME:
IDE:
*/
#include <iostream>
using namespace std;
const int MAXTBLSIZE = 100; //
OR
OR