Through the given code, we are finding the largest from the array of numbers.
public class LargestNo{
public static void main(String[] args) {
int []num={5,7,6,1,9,20};
int max = num[0];
for (int i=1; i<num.length; i++) {
if (num[i] > max) {
max = num[i];
}
}
System.out.println("Largest Number: "+max);
}
}
All Content of this site is for learning only. We do not warrant the correctness of its content. The risk from using it lies entirely with the user. While using this site, you agree to have read and accepted our terms of use and privacy policy.