| 12
 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
 
 | Algo Examen
 
Var
 
Note1 : Réel
Note2 : Réel
Note3 : Réel
Note4 : Réel
 
 
 
Début
 
Afficher "Saisir votre 1ère note"
Saisir "Note1"
Afficher "Saisir votre 2ème note"
Saisir "Note2"
Afficher "saisir votre 3ème note"
Saisir "Note3"
 
Note4 = ((note1*1)+(note2*3)+(note3*4))/8
 
Si Note4 > 12
 
Alors afficher "Félicitation vous êtes reçus avec mention"
 
Sinon
	Si Note4 < 8
	Alors afficher "Désolé vous n'avez pas réussi votre examen"
	Sinon
		Si Note4 >= 8 et < 10
		Alors afficher "Vous passez le rattrapage"
		Sinon
			Si Note4 >=10 et <= 12
			Alors afficher "félicitation vous êtes reçus"
 
Fin Si
 
Fin |