मराठी

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. - Computer Applications

Advertisements
Advertisements

प्रश्न

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'. 

कोड लेखन

उत्तर

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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 5: User - Defined Methods - EXERCISES [पृष्ठ ३३९]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 5 User - Defined Methods
EXERCISES | Q VII. 14. | पृष्ठ ३३९
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×