http://acm.uva.es/p/v1/143.html /** Orchard Trees zzun hello82@unitel.co.kr http://zzun.net **/ #include #include ifstream fin; void swap(float& a, float& b) { float temp = a; a = b; b = temp; } bool read_input(float* x, float* y) { bool rtn = false; for (int i=0; i> x[i] >> y[i]; if ( x[i] > 0 || y[i] > 0 ) rtn = true; } return rtn; } int main() { fin.open("test.in"); float* x = new float[3]; f..