geekbrains_cpp_difficult_mo.../lesson_6/main.cpp

17 lines
205 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-10 20:46:11 +00:00
int main()
{
2021-10-12 00:40:57 +00:00
// exercise_1();
exercise_2();
2021-10-10 20:46:11 +00:00
return 0;
}