Ask Question
13 August, 07:58

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.

+3
Answers (1)
  1. 13 August, 09:57
    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?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers