geekbrains_cpp_difficult_mo.../lesson_6/main.cpp

19 lines
251 B
C++
Raw Normal View History

2021-10-10 20:46:11 +00:00
/*
* main.cpp
*
* Created on: 10 окт. 2021 г.
* Author: alexander
*/
#include "exercise_1.hpp"
2021-10-12 00:40:57 +00:00
#include "exercise_2.hpp"
2021-10-12 16:33:00 +00:00
#include "exercise_3.hpp"
2021-10-10 20:46:11 +00:00
int main()
{
2021-10-12 00:40:57 +00:00
// exercise_1();
2021-10-12 16:33:00 +00:00
// exercise_2();
exercise_3();
2021-10-10 20:46:11 +00:00
return 0;
}