#include #include using namespace std ; int main() { int x1=0 , y1=0 , z1=0 ; cout << "Enter x1::" ; cin >> x1 ; z1 = ( x1 < 10 ) ? 5 : 20 ; /* if ( x1 < 10 ) z1 = 5 ; else z1 = 20 ; */ cout << "z1:" << z1 << endl ; x1 < 10 ? y1=3 : z1=4 ; cout << "y1:" << y1 << endl ; cout << "z1:" << z1 << endl ; ( x1 < 10 ) ? ( cout << "Part 0." ) : (cout << "Part 1\n", cout << "Part 2\n") ; return 0; }