add 3 lectures for SFedU

This commit is contained in:
Edward Emelianov
2021-11-11 20:44:40 +03:00
parent 5d6974b950
commit 0d8fbff1dd
238 changed files with 2746 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
for ((nl = 1; nl < 1001; ++nl)); do
one=$((RANDOM % 1001))
two=$((RANDOM % 41 - 20))
#three=$(echo "scale=3; $((SRANDOM % 100001)) / 1000" | bc -l)
R=$((SRANDOM % 100001))
three=$(echo "$R" | awk '{printf "%.3f", $1/1000}')
echo -e "$nl\t$one\t$two\t$three"
done