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,
1 month ago
Science,
1 month ago
Math,
1 month ago
Math,
3 months ago
Computer Science,
9 months ago
Computer Science,
9 months ago
Computer Science,
9 months ago