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
3
IF(x>y, "true", "false")
Answered by
3
Boolean chk(int x, int y){
return x>y ? True : false;
}
return x>y ? True : false;
}
Similar questions