PC & IT SUPPORT MADE EASY FORUM
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Learnability And Teachability Assesment Calculator

Go down

Learnability And Teachability Assesment  Calculator Empty Learnability And Teachability Assesment Calculator

Post by jamied_uk 26th March 2022, 14:01

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 ""
jamied_uk
jamied_uk
Admin

Posts : 2951
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum