void printLatitude( string city, int degrees, int min, int sec ) { cout << "The latitude of " << city << " is " << degrees << ":" << min << ":" << sec << endl; } void printLongitude( string city, int degrees, int min, int sec ) { cout << "The longitude of " << city << " is " << degrees << ":" << min << ":" << sec << endl; }