// Homework #? // Problem 2.25 // What does the following program print? #include main() { int row = 10, column; while( row >= 1 ) { column = 1; while ( column <= 10 ) { cout << ( row % 2 ? "<" : ">"); ++column; } --row; cout << endl; } return 0; } // Output from Problem 2.25 >>>>>>>>>> <<<<<<<<<< >>>>>>>>>> <<<<<<<<<< >>>>>>>>>> <<<<<<<<<< >>>>>>>>>> <<<<<<<<<< >>>>>>>>>> <<<<<<<<<<