public class Main {
public static void main
(String[] args
) { // An array storing different ages
int ages[] = {20, 22, 18, 35, 48, 26, 87, 70};
// Get the length of the array
int length = ages.length;
// Create a 'lowest age' variable and assign the first array element of ages to it
int lowestAge = ages[0];
// Loop through the elements of the ages array to find the lowest age
for (int age : ages) {
// Check if the current age is smaller than the current 'lowest age'
if (lowestAge > age) {
// If the smaller age is found, update 'lowest age' with that element
lowestAge = age;
}
}
// Output the value of the lowest age
System.
out.
println("The lowest age in the array is: " + lowestAge
); }
}
cHVibGljIGNsYXNzIE1haW4gewogIHB1YmxpYyBzdGF0aWMgdm9pZCBtYWluKFN0cmluZ1tdIGFyZ3MpIHsKICAgIC8vIEFuIGFycmF5IHN0b3JpbmcgZGlmZmVyZW50IGFnZXMKICAgIGludCBhZ2VzW10gPSB7MjAsIDIyLCAxOCwgMzUsIDQ4LCAyNiwgODcsIDcwfTsKCiAgICAvLyBHZXQgdGhlIGxlbmd0aCBvZiB0aGUgYXJyYXkKICAgIGludCBsZW5ndGggPSBhZ2VzLmxlbmd0aDsKICAgIAogICAgLy8gQ3JlYXRlIGEgJ2xvd2VzdCBhZ2UnIHZhcmlhYmxlIGFuZCBhc3NpZ24gdGhlIGZpcnN0IGFycmF5IGVsZW1lbnQgb2YgYWdlcyB0byBpdAogICAgaW50IGxvd2VzdEFnZSA9IGFnZXNbMF07CgogICAgLy8gTG9vcCB0aHJvdWdoIHRoZSBlbGVtZW50cyBvZiB0aGUgYWdlcyBhcnJheSB0byBmaW5kIHRoZSBsb3dlc3QgYWdlCiAgICBmb3IgKGludCBhZ2UgOiBhZ2VzKSB7CiAgICAgIC8vIENoZWNrIGlmIHRoZSBjdXJyZW50IGFnZSBpcyBzbWFsbGVyIHRoYW4gdGhlIGN1cnJlbnQgJ2xvd2VzdCBhZ2UnCiAgICAgIGlmIChsb3dlc3RBZ2UgPiBhZ2UpIHsKICAgICAgICAvLyBJZiB0aGUgc21hbGxlciBhZ2UgaXMgZm91bmQsIHVwZGF0ZSAnbG93ZXN0IGFnZScgd2l0aCB0aGF0IGVsZW1lbnQKICAgICAgICBsb3dlc3RBZ2UgPSBhZ2U7CiAgICAgIH0KICAgIH0KCiAgICAvLyBPdXRwdXQgdGhlIHZhbHVlIG9mIHRoZSBsb3dlc3QgYWdlCiAgICBTeXN0ZW0ub3V0LnByaW50bG4oIlRoZSBsb3dlc3QgYWdlIGluIHRoZSBhcnJheSBpczogIiArIGxvd2VzdEFnZSk7CiAgfQp9Cg==