Write an Application That Inputs Five Numbers Each Between 10 and 100 Inclusive Java

How to find unique elements in array java

Write a java program that inputs 5 numbers, each between 10 and 100 inclusive. As each number is read display it only if it's not a duplicate of any number already read display the complete set of unique values input after the user enters each new value.

Description :

The main two conditions of these programs are

  1. A number once read should not be read again.
  2. The number we read should be in the range of 10 and 100.

The logic is as follows

  1. If the number lies between 10 and 100,

Compare the recently read number with all the previously read numbers, if any number matches then declare that it a duplicate and ask the user to enter another number. Else declare that the number is not in the range of 10 and 100 and read another number.

Algorithm:

  1. import java package
    1. import java.io.*;
    2. import java.util.*;
  2. Create class Array
  3. create main function
    1. public static void main(String ar[])
  4. Declare variable
    1. int temp, i, flag = 0;
    2. int a[] = new int[10];
  5. Scanner s = new Scanner(System.in);
  6. Pass message to enter values
    1. System.out.println(" Enter values: ");
  7. Use for loop and write a statement and also perform the comparison.
  8. for( i = 0; i<5;)
    1. term = s.nestInt();
    2. flag = 0;
    3. if (temp > 10 && temp < 100)
      1. for int j= 0; j++)
        1. if (a[j] == temp)
          1. flag = 1;
      2. if( flag == 0);
        1. a [i] = temp;
        2. i++;
      3. else Print Number already exist, enter another value:
      4. else print number not in range
    4. Print Number in the array are:
  9. for( int j = 0; j < 5; j++)
    1. print a[j];

Program to find Unique Array Element Source code:

import java.io.*; import java.util.*; public class Arrayy {             public static void main(String ar[])             {                         int temp,i,flag=0;                         int a[]=new int[10];                         Scanner s=new Scanner(System.in);                         System.out.println("Enter values :  ");                         for( i=0;i<5;)                         {                                     temp=s.nextInt();                                     flag=0;                                     if(temp>10 && temp<100)                                     {                                                 for(int j=0;j<i;j++)                                                             if(a[j]==temp)                                                                         flag=1;                                                 if(flag==0)                                                 {                                                             a[i]=temp;                                                             i++;                                                 }                                                 else                                     System.out.println("Number already entered. Enter another value : ");                                     }                                     else                                     System.out.println("Number not in range. Enter another values : ");                         }                         System.out.println("Numbers in the array are : ");                          for(int j=0;j<5;j++)                                     System.out.println(a[j]);             } }              

Sample output :

find unique elements in array java

Recommended Post:

  • How to compare dates in java|algorithm with source code
  • Java roll dice 10000 times with algorithm and source code
  • Write a Java program that displays the number of characters, lines, and words in a text
  • Write a Java program that reads a file and displays the file on the screen with a line number before each line
  • Write a Java program that reads a file name from the user, then displays information about whether the file exists, readable, writable, type of file, and the length of the file in bytes
  • Java program to make frequency count of vowels, consonants, special symbols, digits, words in a given text
  • Write a Java program for sorting a given list of names in ascending order
  • Write a java program to Checks whether a given string is a palindrome or not
  • Write a java program to perform multiplication of two matrices
  • write a java program that prints the Fibonacci series for a given number.
  • Write a Java program that finds the factorial of a number
  • Write a Java program that finds prime numbers between 1 to n
  • Write a Java program that prints all real and imaginary solutions to the quadratic equation
  • Odd and Even number in java | Algorithm
  • Even number in java | algorithm with source code
  • Java greater number using a loop
  • Java Area of Rectangle
  • What is a polygon? | Area of Triangle in java
  • To calculate the Area of Circle in the java program
  • Java Addition through user input
  • Addition program in java with source code

Find the solution to the salesforce Question and many more

Write an Application That Inputs Five Numbers Each Between 10 and 100 Inclusive Java

Source: https://myprogrammingschool.com/find-unique-elements-in-array-java-algorithm-and-source-code/

0 Response to "Write an Application That Inputs Five Numbers Each Between 10 and 100 Inclusive Java"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel