Write a program in Java to enter any 10 numbers and print the largest and the smallest number among them
Answers
Answered by
1
Answer:
public static void main(String[] args) {
int smallest = 0;
int large = 0;
int num;
System.out.println("enter the number");//how many number you want to enter
Scanner input = new Scanner(System.in);
int n = input.nextInt();
num = input.nextInt();
smallest = num; //assume first entered number as small one
// i starts from 2 because we already took one num value
for (int i = 2; i < n; i++) {
num = input.nextInt();
//comparing each time entered number with large one
if (num > large) {
large = num;
}
Explanation:
try this answer
Similar questions
Biology,
15 hours ago
English,
15 hours ago
Science,
15 hours ago
Computer Science,
8 months ago
Computer Science,
8 months ago
Math,
8 months ago