Computer Science, asked by gouravpaul16, 7 days ago

Write equivalent java conditional statements. X is greater than equal to Y.

Answers

Answered by sarthakshrestha
0

Answer:

x>=y

Explanation:

x>=y (x is greater than or equal to y)

x<=y (x is less than or equal to y)

x>y (x is greater than y)

x<y (x is less than y)

x==y (x is equal to y)

Similar questions