Please solve this immediately
Attachments:
Answers
Answered by
1
Answer:
Explanation:
public class Gfg {
public static void main(String args[])
{
int a = -25;
int b = -23;
int c= -24;
System.out.println(Math.max(a, b,c));
}
}
Similar questions