Aucun texte alternatif disponible.

Confirmer?

Rechercher dans cette classe


...
Ahmad abid Prof
11100 points
2024-11-04 , 19:31
amour obstacles
...
Publication gratuite
2024-10-13 , 01:46
PGCD de deux nombre algorithme d'euclide

Calcul du PGCD (Algorithme d'Euclide)

Exercice

Entrez deux nombres pour calculer leur PGCD :

Algorithme d'Euclide

Principe de l'algorithme :

PGCD(a, b) = PGCD(b, a % b)
Si b = 0 alors PGCD(a, b) = a
        

Algorithme :

Fonction PGCD(a, b)
Début
    Tant que b ≠ 0 faire
        temp = b
        b = a % b
        a = temp
    Fin Tant que
    Retourner a
Fin
        

Explication :

Voici comment fonctionne l'algorithme d'Euclide pour calculer le PGCD :

Pour calculer PGCD(48, 18) :

1. PGCD(48, 18) : 48 % 18 = 12, donc PGCD(18, 12)

2. PGCD(18, 12) : 18 % 12 = 6, donc PGCD(12, 6)

3. PGCD(12, 6) : 12 % 6 = 0, donc PGCD(6, 0)

4. Comme b = 0, PGCD(6, 0) = 6.

Le PGCD de 48 et 18 est donc 6.

...
Publication gratuite
2024-10-13 , 01:22
algorithme 3SI les tableaux

Exercice de Recherche Linéaire

Exercice

Vous avez un tableau contenant les éléments suivants : [10, 20, 30, 40, 50].

Essayez de rechercher l'élément 30 dans le tableau à l'aide d'un algorithme de recherche linéaire.

Entrez un nombre à rechercher :

10
20
30
40
50

Solution

Nous allons utiliser une approche simple : parcourir le tableau élément par élément jusqu'à ce que nous trouvions l'élément recherché ou atteignions la fin du tableau.

Algorithme de Recherche Linéaire

Fonction Rechercher(T: tableau; n: entier; x: entier): booléen
Début
    Pour i allant de 0 à n-1 faire
        Si T[i] = x alors
            Retourner Vrai
        Fin Si
    Fin Pour
    Retourner Faux
Fin
        

Explication détaillée :

  • Entrées : Le tableau T contenant les éléments, le nombre d'éléments n, et l'élément x que nous cherchons.
  • Processus :
    • Nous parcourons le tableau de l'index 0 à n-1.
    • Pour chaque élément, nous vérifions s'il est égal à x.
    • Si nous trouvons l'élément, nous retournons Vrai.
    • Si nous atteignons la fin du tableau sans trouver l'élément, nous retournons Faux.
  • Sortie : Vrai si l'élément est trouvé, Faux sinon.
...
500 points
2024-09-22 , 12:33
Les tableaux pour 3ème SI
+3
"
...
2024-05-31 , 10:57
DEVOIR SYNTHESEE PROGRAMMATION
3SI
 Télécharger 
DEVOIR-SYNTHESE-3-3-SI.pdf
1
...
2024-05-19 , 22:53
PROBLEME CORRIGEE PROGRAMMATION
 Télécharger 
REVISION-FIN-ANNEE-2024.pdf
1
...
1300 points
2024-05-10 , 02:00
TD Algorithme
 Télécharger 
TD-2-avec-le-corrigé.pdf
1
...
2024-05-05 , 12:58
les interfaces graphiques 3ème SI
 Télécharger 
Les interfaces graphiques.pdf
1
...
2024-04-24 , 10:54

Devoir de synthese 2 Algorithme
3SC Informatique
 Télécharger 
DS2-3SI.pdf
1
...
2024-03-06 , 20:35
algorithme et programmation
 Télécharger 
ALGORITHMES-ARITHMETIQUE.pdf
1
...
2024-02-26 , 22:24
cours enregistrement et tableau d'enregistrement
 Télécharger 
Les enregistrements-20024-3SI.pdf...
1
...
Publication gratuite
2024-02-03 , 10:36
🎯3ème Info🎯Algorith et Programm🎯
🎯Devoir de contrôle Correction🎯
+4
"
...
Publication gratuite
2024-01-19 , 15:11
Les algorithmes récurrents pour 3ème Sciences de l'informatique
...
2023-12-02 , 16:45
DOCC
 Télécharger 
Epreuve-n°03 (3).pdf
...
IkramBM Prof
500 points
2023-11-28 , 15:36
devoir STI 3ème info
 Télécharger 
Ctrl1-2023.docx
2
...
2023-11-21 , 19:08
Phy
...
2023-11-16 , 08:51
9eme
...
2023-11-10 , 06:38
Informatiique 2eme SC/inf
...
Publication gratuite
2023-09-22 , 09:43
cours info chaines de cracteres
Merci à l'auteur de ce travail
1
...
Publication gratuite
2023-09-21 , 09:44
Devoir de synthèse N°1 lycée pilote
3ème informatique.
Merci à l'auteur de ce travail
+1
"
1
الموقع يحتوي على اشهارات يمكنك استعمال الموقع بدون اشهارات في حالة الاشتراك الطريقة الوحيدة للاشتراك هو مراسلتنا على الوتساب على الرقم َValider votre compte
Chatbot Scolaire
Chercher dans cette classe  
×
السلام عليكم
ماذا تريد أن تبحث في هذا القسم