-
Notifications
You must be signed in to change notification settings - Fork 0
/
LinearSearch.cs
43 lines (41 loc) · 1.44 KB
/
LinearSearch.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LinerSearch
{
class Program
{
static void Main(string[] args)
{
int[] a = new int[100];
Console.WriteLine("Enter the number of elements you want to add in the array ?");
string s = Console.ReadLine();
int x = Int32.Parse(s);
Console.WriteLine("-------------------------");
Console.WriteLine("\n Enter the array elements \n");
for (int i = 0; i < x; i++)
{
string s1 = Console.ReadLine();
a[i] = Int32.Parse(s1);
}
Console.WriteLine("-------------------------");
Console.WriteLine("Enter the Search element\n");
string s3 = Console.ReadLine();
int x2 = Int32.Parse(s3);
for (int i = 0; i < x; i++)
{
if (a[i] == x2)
{
Console.WriteLine("-------------------------");
Console.WriteLine("Search successful");
Console.WriteLine("Element {0} found at location {1}\n", x2, i + 1);
//return;
Console.ReadLine();
}
}
Console.WriteLine("Entered element not found. Search unsuccessful");
Console.ReadLine();
}
}
}