Fill in the blanks to compare the variables and output the corresponding text | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

Fill in the blanks to compare the variables and output the corresponding text

X=10 Y=20 Print (y) _x>y_ _print("if statement")

6th May 2020, 4:25 AM
Sagar Pradhan
Sagar Pradhan - avatar
3 Answers
+ 1
Welcome to SoloLearn forum! Here are some tips to make sure your question qualifies: - Post only programming-related QUESTIONS and ANSWERS; - SEARCH for similar QUESTIONS or ANSWERS before posting; - Include relevant TAGS; - Follow community RULES: https://www.sololearn.com/Content-Creation-Guidelines/ DO NOT - Post spam/advertisement; - Use inappropriate language. * Post general discussions and open-ended questions in your feed.
6th May 2020, 4:33 AM
Tarun Kumar
Tarun Kumar - avatar
0
x=10; y=20; printf(y); if(x>y) printf("x is big"); else if(y>x) printf("y is big"); else printf("Both are equal");
6th May 2020, 4:54 AM
Dasarath Singh
0
Tarun Pandey Just share the Post. No need to copy paste content. Sagar Pradhan Follow the guidelines https://www.sololearn.com/discuss/1316935/?ref=app
6th May 2020, 4:54 AM
A͢J
A͢J - avatar