to enter two numbers and find the greatest among them
Answers
Answered by
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
Math,
2 months ago
English,
2 months ago
History,
2 months ago
Math,
5 months ago
Computer Science,
11 months ago
Computer Science,
11 months ago
Computer Science,
11 months ago