记录编号 |
44789 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[ftiasch S2] 方 |
最终得分 |
100 |
用户昵称 |
Cirno |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.005 s |
提交时间 |
2012-10-20 09:34:50 |
内存使用 |
3.15 MiB |
显示代码纯文本
#include<fstream>
#include<iostream>
using namespace std;
int main()
{
ifstream fin("fang.in");
ofstream fout("fang.out");
int x1,y1,x2,y2,x3,y3;
fin>>x1>>y1>>x2>>y2>>x3>>y3;
cout<<x1<<' '<<y1<<' '<<x2<<' '<<y2<<' '<<x3<<' '<<y3;
if(x1==x2&&y1==y3)
fout<<x3<<' '<<y2<<endl;
else
if(x1==x3&&y1==y3)
fout<<x2<<' '<<y3<<endl;
else
if(x2==x3&&y2==y1)
fout<<x1<<' '<<y3<<endl;
else
if(x2==x1&&y2==y3)
fout<<x3<<' '<<y1<<endl;
else
if(x3==x2&&y3==y1)
fout<<x1<<' '<<y2<<endl;
else
if(x3==x1&&y3==y2)
fout<<x2<<' '<<y1<<endl;
fin.close();
fout.close();
return 0;
}