geekbrains_cpp_difficult_mo.../lesson_3/main.cpp

19 lines
209 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-28 20:57:49 +00:00
int main()
{
2021-09-30 00:46:47 +00:00
// exercise_1();
exercise_2();
2021-09-28 20:57:49 +00:00
return 0;
}