Advertisements
Advertisements
Question
Write a program to accept 10 numbers in a Single Dimensional Array. Pass the array to a method Search(int m[], int ns) to search the given number ns in the list of array elements. If the number is present, then display the message 'Number is present' otherwise, display 'number is not present'.
Code Writing
Solution
import java.util.*;
public class FQ14
{
public booleansearch(int m[], int ns)
{
for (int i = 0; i < 10; i++)
{if (m[i] == ns)
return true;
}
return false;
}
public static void main(String args[])
{
FQ14 Q = new FQ14();
Scanner ob = new Scanner(System.in);
int m[] = new int[10];
boolean y;
System.out.println("Enter ten numbers");
for (int i = 0; i < 10; i++)
m[i] = ob.nextInt();
System.out.println("Enter the number to be searched");
v = Q.search(m, ob.nextInt());
if (y == true)
System.out.println("Search is successful..item found");
else
System.out.println("Search unsuccessful..item not found");
}}
shaalaa.com
Is there an error in this question or solution?
Chapter 5: User - Defined Methods - EXERCISES [Page 339]