JAVA keyboard input array, output array content and maximum value, minimum value

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.