Четырехугольник задан своими координатами вершин. найти p (периметр) на с++

atleti09oz3yfh atleti09oz3yfh    2   10.09.2019 14:10    1

Ответы
moroshan77 moroshan77  07.10.2020 05:28
...
#define SQUARE(a) ((a) * (a))
struct Point
{
int x;
int y;
};
...
int main()
{
...
const int numOfPoints = 4;
Point points[numOfPoints];
...
double p = 0;
for (int i = 0; i < numOfPoints - 1; i++)
p += sqrt(SQUARE(points[i + 1].x - points[i].x)) + SQUARE(points[i + 1].y - points[i].y));

p += sqrt(SQUARE(points[numOfPoints - 1].x - points[0].x)) + SQUARE(points[numOfPoints - 1].y - points[0].y));

}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика