diff --git a/harfnotu.sh b/harfnotu.sh new file mode 100644 index 0000000..fc19627 --- /dev/null +++ b/harfnotu.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +echo "Notunuzu giriniz (0-100) : " +read not + +# 70 den küçük ise F +# 71 ile 80 arasında ise C +# 81 ile 90 arasında ise B +# 91 ile 100 arasında ise A + +if [ $not -ge 91 -a $not -le 100 ]; then +echo "A" +elif [ $not -ge 81 -a $not -le 90 ]; then +echo "B" +elif [ $not -ge 70 -a $not -le 80 ]; then +echo "C" +elif [ $not -lt 70 ]; then +echo "F" +fi \ No newline at end of file