- 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")
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.
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");
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