Algorithme et pascal
Fermé
has-san
Messages postés
8
Date d'inscription
lundi 8 juin 2009
Statut
Membre
Dernière intervention
9 juin 2009
-
8 juin 2009 à 16:35
has-san Messages postés 8 Date d'inscription lundi 8 juin 2009 Statut Membre Dernière intervention 9 juin 2009 - 8 juin 2009 à 17:33
has-san Messages postés 8 Date d'inscription lundi 8 juin 2009 Statut Membre Dernière intervention 9 juin 2009 - 8 juin 2009 à 17:33
A voir également:
- Algorithme et pascal
- Turbo pascal download - Télécharger - Édition & Programmation
- My pascal - Télécharger - Édition & Programmation
- Dev-pascal - Télécharger - Édition & Programmation
- Logiciel algorithme euromillion - Télécharger - Loisirs créatifs
- Logiciel algorithme gratuit - Télécharger - Édition & Programmation
4 réponses
wida
Messages postés
150
Date d'inscription
lundi 5 novembre 2007
Statut
Membre
Dernière intervention
28 novembre 2011
17
8 juin 2009 à 16:52
8 juin 2009 à 16:52
c'est pas assez claire!! peut tu expliquer encore plus?
Ki!l
Messages postés
94
Date d'inscription
vendredi 1 mai 2009
Statut
Membre
Dernière intervention
4 mars 2011
36
8 juin 2009 à 17:00
8 juin 2009 à 17:00
tu peut utiliser cette procédure:
procedure inverse(var t:tab;n:integer);
begin
for i:=1 to n div 2 do
begin
aux:=t[i];
t[i]:=t[n-i+1];
t[n-i+1]:=aux;
end;
end;
avec n le nombre des entiers t le tableau et tab un nouveau type:array[1..100]of integer
procedure inverse(var t:tab;n:integer);
begin
for i:=1 to n div 2 do
begin
aux:=t[i];
t[i]:=t[n-i+1];
t[n-i+1]:=aux;
end;
end;
avec n le nombre des entiers t le tableau et tab un nouveau type:array[1..100]of integer
has-san
Messages postés
8
Date d'inscription
lundi 8 juin 2009
Statut
Membre
Dernière intervention
9 juin 2009
8 juin 2009 à 17:07
8 juin 2009 à 17:07
je veux la resolution du
"ecrire une fonction de tri d'un tableau par selection du maximum (ou minimum)""
sous langage de pascal (project et unit)
logiciel DELPHI 7
"ecrire une fonction de tri d'un tableau par selection du maximum (ou minimum)""
sous langage de pascal (project et unit)
logiciel DELPHI 7
has-san
Messages postés
8
Date d'inscription
lundi 8 juin 2009
Statut
Membre
Dernière intervention
9 juin 2009
8 juin 2009 à 17:33
8 juin 2009 à 17:33
est ce que quelqu'un me peut envoyer la solution de "" ecrire une fonction de calcul de la moyenne de elements d'un tableau d'entier ""