0_0_38141825_14839.cpp:6:1: error: 'Vector' does not name a type
Vector<Point> polygon;
^
0_0_38141825_14839.cpp: In function 'bool inPolygon(Point&)':
0_0_38141825_14839.cpp:9:13: error: 'polygon' was not declared in this scope
int n = polygon.size();
^
0_0_38141825_14839.cpp: At global scope:
0_0_38141825_14839.cpp:12:11: error: '::main' must return 'int'
void main(){
^
0_0_38141825_14839.cpp: In function 'int main()':
0_0_38141825_14839.cpp:13:23: error: 'n' was not declared in this scope
while(~scanf("%d",&n)){
^
0_0_38141825_14839.cpp:18:12: error: 'polygon' was not declared in this scope
polygon.push_back(p);
^
0_0_38141825_14839.cpp:20:14: error: 'm' was not declared in this scope
while(m>0){
^
0_0_38141825_14839.cpp:28:1: error: expected '}' at end of input
}
^
|