Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning Databases With PostgreSQL From Novice To Professional

Authors: Richard Stones, Neil Matthew

2nd Edition

1590594789, 978-1590594780

More Books

Students also viewed these Databases questions