-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFuncArray2.cpp
More file actions
126 lines (110 loc) · 3.09 KB
/
FuncArray2.cpp
File metadata and controls
126 lines (110 loc) · 3.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#include <iostream>
using namespace std;
const int ARRAY_SIZE = 15;
int arr[ARRAY_SIZE];
int length = 0;
void inputElements() {
cout << "Enter 5 elements (separated by spaces): ";
for (int i = 0; i < 5; i++) {
if (cin >> arr[i]) {
length++;
} else {
break;
}
}
cout << "\nArray elements: ";
for (int i = 0; i < length; i++) {
cout << arr[i] << " ";
}
cout << endl;
}
void addElement(int element) {
if (length < ARRAY_SIZE) {
arr[length] = element;
length++;
cout << "Element added successfully." << endl;
} else {
cout << "Array is full. Cannot add more elements." << endl;
}
cout << "\nArray elements: ";
for (int i = 0; i < length; i++) {
cout << arr[i] << " ";
}
cout << endl;
}
void deleteElement(int element) {
bool found = false;
for (int i = 0; i < length; i++) {
if (arr[i] == element) {
for (int j = i; j < length - 1; j++) {
arr[j] = arr[j + 1];
}
length--;
found = true;
break;
}
}
if (found) {
cout << "Element deleted successfully." << endl;
} else {
cout << "Element not found in the array." << endl;
}
cout << "\nArray elements: ";
for (int i = 0; i < length; i++) {
cout << arr[i] << " ";
}
cout << endl;
}
bool searchElement(int element) {
for (int i = 0; i < length; i++) {
if (arr[i] == element) {
return true;
}
}
return false;
}
int main() {
char choice;
int element;
while (true) {
cout << "Menu:" << endl;
cout << "a. Input elements" << endl;
cout << "b. Add element" << endl;
cout << "c. Delete element" << endl;
cout << "d. Search element" << endl;
cout << "e. Exit" << endl;
cout << "Enter your choice: ";
cin >> choice;
switch (choice) {
case 'a':
inputElements();
break;
case 'b':
cout << "Enter element to add: ";
cin >> element;
addElement(element);
break;
case 'c':
cout << "Enter element to delete: ";
cin >> element;
deleteElement(element);
break;
case 'd':
cout << "Enter element to search: ";
cin >> element;
if (searchElement(element)) {
cout << "Element found in the array." << endl;
} else {
cout << "Element not found in the array." << endl;
}
break;
case 'e':
cout << "Exiting program." << endl;
exit(0);
default:
cout << "Invalid choice. Please try again." << endl;
}
cout << endl;
}
return 0;
}