CodeFoeces-749B

题目

原题链接:B. Parallelogram is Back

题意

给出三个点,求各构成平行四边形的其他点。
很简单的题。但参考了其他作者的代码。

代码

#include
using namespace std;
struct node{
    int x,y;
};
int main() {
    node s[100],a,b,c;
    cin>>a.x>>a.y;
    cin>>b.x>>b.y;
    cin>>c.x>>c.y;
    printf("3\n");
    printf("%d %d\n",a.x-b.x+c.x,a.y-b.y+c.y);
    printf("%d %d\n",b.x-c.x+a.x,b.y-c.y+a.y);
    printf("%d %d\n",c.x-a.x+b.x,c.y-a.y+b.y);
    return 0;
}

你可能感兴趣的:(CodeFoeces-749B)