Computer Science, asked by sofia4221, 3 months ago

to enter two numbers and find the greatest among them​

Answers

Answered by shobhadevi7762
1

Explanation:

class great

{

public static void main (String args [])

{

int x =3;

int y=7;

if(x>y)

System.out.println(x);

else

System.out.println(y);

}

}

Similar questions