-
Notifications
You must be signed in to change notification settings - Fork 0
/
exo2_chaine.cpp
52 lines (46 loc) · 1.28 KB
/
exo2_chaine.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
44
45
46
47
48
49
50
51
52
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SARRITZU Peter
On W10
created :
</La programmation a du bon>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#include <iostream> //entete de gestion des E/S
#include <string.h>
using namespace std;
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fonction première occurence
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
int premiereOccurence(char chaine1[],char chaine2[])
{
int i = 0;
int j = 0;
if (strlen(chaine2) > strlen(chaine1))
{
cout << "La chaîne cherchée est plus longue que la chaîne de départ" <<endl;
return 0;
}
while (i < strlen(chaine1))
{
if (chaine1[i] == chaine2[j])
j++;
if (j == strlen(chaine2))
{
cout << "Le mot " << chaine2 << " se trouve à la position " << (i - j + 1) << " dans la phrase" <<endl;
return 0;
}
i++;
j = 0;
}
cout << "La chaîne cherchée n'a pas été trouvée dans la chaîne de départ" <<endl;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fonction Principale
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
int main()
{
char chaine1[] = "LES SN1 AIMENT LE LANGAGE C++";
char chaine2[] = "LANGAGE";
premiereOccurence(chaine1,chaine2)
cin.get(); cin.ignore();
return EXIT_SUCCESS;
}