comparaison - Shell/Batch - Programmation
Marsh Posté le 30-12-2004 à 19:57:21
Salut,jai ecrit un petit programme pour la comparaison mais je ovis pas pkoi y marche pas? if [ $# -ne 3] then exit 1 fi if $1>$2 then a=$1 else a=$2 fi if a>$3 then echo $a est le plus grand nombre then echo $3 est le plus grand nombre fi
Marsh Posté le 30-12-2004 à 20:38:48
Les comparaisons arithmetiques se font avec [ $1 -ge $2 ], [ $1 -le $2 ], etc.
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 30-12-2004 à 19:57:21
Salut,jai ecrit un petit programme pour la comparaison mais je ovis pas pkoi y marche pas?
if [ $# -ne 3]
then exit 1
fi
if $1>$2
then a=$1
else a=$2
fi
if a>$3
then echo $a est le plus grand nombre
then echo $3 est le plus grand nombre
fi