Exercice a resoudre
Fermé
ABDELOUAHAD222
Messages postés
24
Date d'inscription
mercredi 23 janvier 2008
Statut
Membre
Dernière intervention
13 avril 2008
-
9 févr. 2008 à 18:09
grad - 9 févr. 2008 à 18:34
grad - 9 févr. 2008 à 18:34
A voir également:
- Exercice a resoudre
- Exercice informatique cm2 pdf ✓ - Forum Études / Formation High-Tech
- Exercice pour apprendre à utiliser un ordinateur - Astuces et Solutions
- Triangle des textures exercice corrigé - Forum Loisirs / Divertissements
- Exercice python mot de passe ✓ - Forum Python
- Exercice word gratuit avec corrigé - Forum Word
2 réponses
OrionS
Messages postés
55
Date d'inscription
jeudi 7 février 2008
Statut
Membre
Dernière intervention
22 septembre 2008
39
9 févr. 2008 à 18:21
9 févr. 2008 à 18:21
Variables
i, j , n, max, tmp : Entier
tableau T(6) : Entier
Début
T(6) = {20 , 6 , 1 , 3 , 1 , 7}
n = n -1
Pour i=0 A n−1
max = i
Pour j=i+1 A n
Si T( j )> T(max) Alors
max = j
FinSi
FinPour
tmp = T(i)
T(i) = T(max)
T(max) = tmp
FinPour
Fin
i, j , n, max, tmp : Entier
tableau T(6) : Entier
Début
T(6) = {20 , 6 , 1 , 3 , 1 , 7}
n = n -1
Pour i=0 A n−1
max = i
Pour j=i+1 A n
Si T( j )> T(max) Alors
max = j
FinSi
FinPour
tmp = T(i)
T(i) = T(max)
T(max) = tmp
FinPour
Fin