0
Fill in the blanks to compare the variables and print the "printing in the else" text to the screen:
int x=10 int y=20 if( > ) { cout << "Printing in the else "<< endl; }
2 Respuestas
+ 2
int x = 10;
int y = 20;
if ( x > y) {
cout << «some other text»<<endl;
}
else {
cout <<«printing in the else»<<endl;
}