2021-06-24 13:43:37 +00:00
|
|
|
#include <iostream>
|
2021-06-24 21:30:49 +00:00
|
|
|
#include <vector>
|
2021-06-24 13:43:37 +00:00
|
|
|
#include "exercise_1.hpp"
|
|
|
|
#include "exercise_2.hpp"
|
|
|
|
#include "exercise_3.hpp"
|
|
|
|
#include "exercise_4.hpp"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2021-06-24 21:30:49 +00:00
|
|
|
// Exercise 1
|
2021-06-24 13:43:37 +00:00
|
|
|
|
2021-06-24 21:30:49 +00:00
|
|
|
Parallelogram A(15, 9);
|
|
|
|
|
|
|
|
// Figure* figures[5];
|
|
|
|
|
|
|
|
return 0;
|
2021-06-24 13:43:37 +00:00
|
|
|
}
|