Advertisements
Advertisements
Question
Define a class to declare an integer array of size n and accept the elements into the array. Search for an element input by the user using the linear search technique, display the element if it is found, otherwise display the message “NO SUCH ELEMENT".
Answer in Brief
Solution
import java.util.Scanner;
class LinearSearch
{
public static void main(String args[])
{
int c, n, search, array[];
Scanner in = new Scanner(System.in);
System.out.println("Enter number of elements");
n = in.nextlnt();
array= new int[n];
System.out.println("Enter those" +n+ "elements");
for (c = 0; c < n; c++)
array[c] = in.nextlnt();
System.out.println("Enter value to find");
search = in.nextlnt();
for (c = 0; c < n; c++)
{
if (array[c] = search) /*Searching element is present*/
{
System.out.println(array[c]);
break;
}
}
if (c = n) /*Element to search isn't present*/
System.out.println(search + "No such element");
}
}
shaalaa.com
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
What is the value stored in variable res given below?
double res = Math.pow (“345”.indexOf(‘5’), 3);
Identify the correct array declaration statement.
Define a class to declare a character array of size ten, accept the character into the array and perform the following:
- Count the number of uppercase letters in the array and print.
- Count the number of vowels in the array and print.
Define a class to declare an array of size 20 of the double datatype, accept the elements into the array and perform the following:
- Calculate and print the sum of all the elements.
- Calculate and print the highest value of the array.