This commit is contained in:
2024-09-10 15:13:11 +02:00
commit 778bb476fa
140 changed files with 6123 additions and 0 deletions

16
SCR1.2/TP08/mult.mat.sh~ Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
if [[ $# -lt 2 ]]
then
echo "Usage : $0 <NUM_ARG1> <NUM_ARG2>"
exit
fi
for((i=$1;<=$2;i++))
do
for ((j=$1;j<=$2;j++))
do
echo -n "$((i*j))"
done
echo -e "\n"
done
exit