-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinear_Search_Function.cpp
More file actions
59 lines (46 loc) · 1.25 KB
/
Linear_Search_Function.cpp
File metadata and controls
59 lines (46 loc) · 1.25 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include<iostream>
using namespace std;
int Linear_Search(int arr[], int num1, int num)
{
int i;
for(i=0; i<num; i++)
{
if(arr[i]==num1)
{
cout<<"The element "<<num1<<" is present at index "<<i;
break;
}
}
if (i == num)
{
cout<<"The element "<<num1<<" is not present in the array";
}
return 0 ;
}
int main()
{
int num,num1,i;
cout<<"Enter the size of an array"<<endl;
cin>>num;
int arr[num];
cout<<"Enter the elements of an array"<<endl;
for(i=0; i<num; i++)
{
cin>>arr[i];
}
cout<<"Array Elements are:";
for (i = 0; i<num; i++)
{
cout<<arr[i]<<" ";
}
cout<<"\n";
cout<<"Enter the element you want to search for: "<<endl;
cin>>num1;
Linear_Search(arr,num1,num);
return 0;
}