Программа производит сложение координат точек
и вывод результата в виде конечной координаты:).
В этом примере дано понятие структуры!

//------------------------------------------------------------------------------------------------
#include <iostream>
#include <conio.h>
using namespace std;
//-----------------
struct point
{ int x;
int y;
};
//-----------------
int main()
{
point first, second, summa;
char ch=',', cool='a';
while(cool!='n')
{
cout<<"Enter the koordinati point p1: ";
cin>>first.x>>ch>>first.y;
cout<<"Enter the koordinati point p2: ";
cin>>second.x>>ch>>second.y;
summa.x=first.x+second.x;
summa.y=first.y+second.y;
cout<<"Koordinati point p1+p2: "<<summa.x<<ch<<summa.y<<'\n';
cout<<"Continue? (y/n): ";
cin>>cool;
}
return 0;
}

//------------------------------------------------------------------------------------------------

Хакинг | Главная | Программирование

Hosted by uCoz