Graybeard
Well-Known Member
EASY follow the instructions carefully!!!!
***LESS VACATION AND HOLIDAYS
Bash:
#!/bin/bash -vx
VAL=10000
for n in {1..320}
do
VAL=$(bc -l <<< "scale=2; 1.01*$VAL")
done
JUST MAKE 1% A DAY COMPOUNDED
++ bc -l
+ VAL=234345.10
+ for n in {1..320}
++ bc -l
+ VAL=236688.55
+ for n in {1..320}
++ bc -l
+ VAL=239055.43
+ for n in {1..320}
++ bc -l
+ VAL=241445.98
Last edited: