Ask Question
1 September, 12:21

Write a Java application that inputs a series of 10 integers and determines and prints the largest and smallest integer. Use a counter-controlled while iteration.

+1
Answers (1)
  1. 1 September, 12:38
    0
    import java. util. Scanner;

    public class LargestSmallest {

    public static void main (String[] args) {

    Scanner in = new Scanner (System. in);

    System. out. print ("Enter 10 integers: ");

    int num = in. nextInt ();

    int i = 1;

    int min = num, max = num;

    while (i < 10) {

    num = in. nextInt ();

    if (num > max) max = num;

    if (num < min) min = num;

    i++;

    }

    System. out. println ("Largest number: " + max);

    System. out. println ("Smallest number: " + min);

    }

    }

    Explanation:

    A Java application that inputs a series of 10 integers and determines and prints the largest and smallest integer is written above.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a Java application that inputs a series of 10 integers and determines and prints the largest and smallest integer. Use a ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers