Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env bash
- _get_entries() {
- clear
- read -rp "Nome do aluno: " nome
- echo -e "\nDigite a nota do aluno: "
- read -r nota_um
- read -r nota_dois
- read -r nota_tres
- }
- _get_media() {
- echo "$nota_um, $nota_dois, $nota_tres"
- MEDIA=$(((nota_um+nota_dois+nota_tres)/3))
- }
- _verify_media() {
- if [[ $MEDIA -ge 5 ]]; then
- echo -e "\nSua nota é $MEDIA. Parabéns $nome você passou de ano!"
- exit 1
- fi
- echo -e "\nBurrão! sua nota é $MEDIA! Melhora essa bosta!"
- }
- main() {
- _get_entries
- _get_media
- _verify_media
- }
- main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement