#!/bin/bash

echo "Digite sua nota:"
read nota

if [ $nota -ge 90 ]; then
    echo "A"

elif [ $nota -ge 70 ]; then
    echo "B"

elif [ $nota -ge 60 ]; then
    echo "C"

else
    echo "D"
fi

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: