Learnability And Teachability Assesment Calculator
Page 1 of 1
Learnability And Teachability Assesment Calculator
Code
- Code:
#!/bin/bash
# (c) J~Net 2022
# jnet.sytes.net
#
# ./clac.sh
#
clear
op='*'
echo "Welcome To The Learnability / Teachability Assessment Calculator"
echo ""
echo "Out of 10 how likely are you to learn something new?"
read input1
if(($input1 > "10"))
then
echo "Number too high!!!, Press any key to try again!"
read Y
bash calc.sh
fi
echo ""
echo "Out of 10 how likely are you to change based on what you learn?"
read input2
if(($input2 > "10"))
then
echo "Number too high!!!, Press any key to try again!"
read Y
bash calc.sh
fi
echo ""
final=$((input1 * input2))
echo ""
output="Your learnability score is $final% out of a maximum of 100%"
echo $output
echo ""
Similar topics
» Bash Percentage Calculator For Linux
» Linux Bash Dog Age Calculator Script
» Bash Wattage Calculator
» Bash Odds Fractual To Decimal Calculator
» Voltage Divider Calculator For Linux Bash
» Linux Bash Dog Age Calculator Script
» Bash Wattage Calculator
» Bash Odds Fractual To Decimal Calculator
» Voltage Divider Calculator For Linux Bash
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum