geekbrains_cpp_difficult_mo.../lesson_3/main.cpp

21 lines
251 B
C++
Raw Normal View History

2021-09-28 20:57:49 +00:00
/*
* main.cpp
*
* Created on: 27 сент. 2021 г.
* Author: alexander
*/
2021-09-30 00:46:47 +00:00
#include "exercise_1.hpp"
#include "exercise_2.hpp"
2021-09-30 17:08:09 +00:00
#include "exercise_3.hpp"
2021-09-28 20:57:49 +00:00
int main()
{
2021-09-30 17:08:09 +00:00
exercise_1();
2021-09-30 00:46:47 +00:00
exercise_2();
2021-09-30 17:08:09 +00:00
exercise_3();
2021-09-28 20:57:49 +00:00
return 0;
}