public class Result { public static void main(String args[]) { double num0 = 4.15; double num1 = 5.16; double num2 = Math.max( num0, num1 ); System.out.print(num2); } }
5.16
Previous Question Next Question
Your comments will be displayed only after manual approval.