int cross(vct a,vct b,vct c) { vct ab,bc; ab=b-a; bc=c-b; return ab.x*bc.y-ab.y*bc.x; } double area(vct p[],int n) { int ar=0; for(i=1;i+1