-
Notifications
You must be signed in to change notification settings - Fork 0
/
exo7_tab.cpp
43 lines (39 loc) · 932 Bytes
/
exo7_tab.cpp
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
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SARRITZU Peter
On W10
created :
</La programmation a du bon>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#include <iostream> //entete de gestion des E/S
using namespace std;
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fonction Supprime
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
bool supprime(int* tab, int val, int n)
{
bool trouve = false;
for (int i = 0; i < n; i++)
{
if (tab[i] == val)
{
tab[i] = 0;
trouve = true;
}
else if (tab[i] != val && trouve)
{
tab[i - 1] = tab[i];
tab[i] = 0;
}
}
return trouve;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fonction Principale
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
int main()
{
int tab[] = { 5,9,4,2,8,11,3,1,22,7 }
cout << supprime(tab, 3) << endl;
cin.get(); cin.ignore();
return EXIT_SUCCESS;
}