Package Shuzu;
Import Java.util.Scanner;
public class Shuzu {
/**
* @param args
*/
public static void Main (string[] args) {
TODO auto-generated Method Stub
Int[] A = new int[5]; Defining arrays
Scanner Scanner = new Scanner (system.in); Keyboard input
System.out.println ("Please enter 5 numbers, separated by a space");
for (int i=0;i<a.length;i++) {
A[i] = Scanner.nextint (); assigning keyboard input values to an array
}
int min = a[0]; Make the minimum equal to the first number of the array
int max = a[0]; Make the minimum equal to the first number of the array
for (int i=0;i<a.length;i++) {
System.out.print (A[i]); Output array Contents
if (a[i]<min) {//If one of the array's < min values
min = A[i]; So the minimum value changes
}
if (A[i]>max) {//If a certain number > maximum value of an array
max = A[i]; Then the maximum value changes
}
}
System.out.println ("The largest number is:" +max);
System.out.println ("The smallest number is:" +min);
}
}
JAVA keyboard input array, output array content and maximum value, minimum value