Question: Write an application that inputs five numbers, each between 10 and 100, inclusive. As each number is read, display it only if it is not

Write an application that inputs five numbers, each between 10 and 100, inclusive. As each number is read, display it only if it is not a duplicate of a number already read. Be sure to provide for the worst case, in which all five numbers are different.

Use the smallest possible array to solve this problem. Display the complete set of unique values input after the user enters each new value.

Help me, compile this code. Not sure what is wrong with it.

import java.io.*; import java.util.Scanner;

public class Duplicate { public static void main(String[] args) { int i; int index = 0; int myNumber; int [] myArray=new int[20]; Scanner keyboard = new Scanner(System.in); System.out.println(" A program to display th unique numbers entered. "); for(int count = 1; count <= 20; count++); { System.out.println(" Enter number" +count + " : "); myNumber r = keyboard.nextInt(); if (myNumber < 10 || myNumber > 100) { System.out.println("\tInvalid Range"); continue; } for ( i = 0; i

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!