mirror of
https://bitbucket.org/Mattrixwv/projecteulercpp.git
synced 2025-12-06 17:13:59 -05:00
Updated comments
This commit is contained in:
@@ -1,8 +1,24 @@
|
|||||||
//ProjectEulerCPP/ProblemSelection.hpp
|
//ProjectEuler/ProjectEulerCPP/ProblemSelection.hpp
|
||||||
//Mattrixwv
|
//Mattrixwv
|
||||||
// Created: 07-08-20
|
// Created: 07-08-20
|
||||||
//Modified: 07-08-20
|
//Modified: 07-09-20
|
||||||
//This is a header file with a few functions to help select and run problems
|
//This is a header file with a few functions to help select and run problems
|
||||||
|
/*
|
||||||
|
Copyright (C) 2020 Matthew Ellison
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#ifndef PROBLEMSELECTION_HPP
|
#ifndef PROBLEMSELECTION_HPP
|
||||||
|
|||||||
20
main.cpp
20
main.cpp
@@ -1,9 +1,25 @@
|
|||||||
//ProjectEuler/C++/main.cpp
|
//ProjectEuler/ProjectEulerCPP/main.cpp
|
||||||
//Matthew Ellison
|
//Matthew Ellison
|
||||||
// Created: 07-04-19
|
// Created: 07-04-19
|
||||||
//Modified: 06-19-20
|
//Modified: 07-09-20
|
||||||
//This is a driver function for all Project Euler problems
|
//This is a driver function for all Project Euler problems
|
||||||
//It prompts the user for an action (state the problem or solve the problem), then executes the appropriate command on the appropriate problem
|
//It prompts the user for an action (state the problem or solve the problem), then executes the appropriate command on the appropriate problem
|
||||||
|
/*
|
||||||
|
Copyright (C) 2020 Matthew Ellison
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|||||||
Reference in New Issue
Block a user