搜狐C++笔试编程题一不知道为啥只通过了75% 题目输出与你最近的NPC坐标 地图大小128*128; 参数一:你的坐标x, 参数二:你的坐标y, 参数三:NPC个数, 参数四:NPC的坐标用,号隔开如x1,y1,x2,y2 所有参数均用逗号隔开,前后无空格 #include<iostream> #include<algorithm> #include<vector> #include<string> using namespace std; struct Point { int x = 0; ...