Computer Science, asked by nik7683, 9 months ago

write a function check which takes two integers arguments x and y and returns true if x is greater than Y otherwise returns false​

Answers

Answered by varshachandel1317
3

IF(x>y, "true", "false")

Answered by viraj766
3
Boolean chk(int x, int y){
return x>y ? True : false;
}
Similar questions