// Swamp.cpp : Defines the entry point for the console application. // #include using namespace std; const int SIZE = 1000; struct point { int x, y; } points[SIZE]; int npoints; int main() { int i, j, k, icase=0; cin >> npoints; while (npoints != 0) { icase++; for(i=0; i> points[i].x >> points[i].y; } int max = 0; for(i=0; i max) max = count; } } if (max >= 4) cout << "Photo " << icase << ": " << max << " points eliminated" << endl; else cout << "Photo " << icase << ": 0 points eliminated" << endl; cin >> npoints; } return 0; }