+91-85006-22255
What will be the output of the following program?
public class FindMin { public static void main(String[] args) { int x = 10; int y = 20; double z = 19.5; System.out.print(Math.min(x, z) + " " + Math.min(y, z)); }}
Topic: Java Math Class - java.lang.Math
Read this topic Take test on this topic
Open In App