You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
pp=$1
|
|
for i ; do
|
|
if [ $i -lt $pp ] ; then
|
|
pp=$i
|
|
fi
|
|
done
|
|
if [ $i = 0 ]; then
|
|
echo "Erreur, le nombre est null !!!!" >&2
|
|
else
|
|
echo "Le plus petit est $i"
|
|
fi
|