You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Purpose : This document is the starting point for the program that checks for perfect numbers in the range 1 to 9999 and if found, displays the number and its factors in a format.
*/
#include <iostream>
#include "perfectNums.h"
using std::cout;
using std::endl;
int main()
{
const int minValue=1,maxValue=9999;
cout<<"List Of Perfect numbers in the range 1 to 9999 :"<<endl;