Fill in the blanks to compare the variables and print the "printing in the else" text to the screen: | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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; }

21st Dec 2020, 11:17 AM
Ayush Class VI
Ayush Class VI - avatar
1 Answer
+ 2
int x = 10; int y = 20; if ( x > y) { cout << «some other text»<<endl; } else { cout <<«printing in the else»<<endl; }
19th Mar 2022, 9:52 PM
junior