Advertisement
Rnery

media na escola

Jun 25th, 2022 (edited)
1,411
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.60 KB | Source Code | 1 0
  1. #!/usr/bin/env bash
  2.  
  3. _get_entries() {
  4.     clear
  5.     read -rp "Nome do aluno: " nome
  6.     echo -e "\nDigite a nota do aluno: "
  7.     read -r nota_um
  8.     read -r nota_dois
  9.     read -r nota_tres
  10. }
  11.  
  12. _get_media() {
  13.     echo "$nota_um, $nota_dois, $nota_tres"
  14.     MEDIA=$(((nota_um+nota_dois+nota_tres)/3))
  15. }
  16.  
  17. _verify_media() {
  18.     if [[ $MEDIA -ge 5 ]]; then
  19.         echo -e "\nSua nota é $MEDIA. Parabéns $nome você passou de ano!"
  20.         exit 1
  21.     fi
  22.     echo -e "\nBurrão! sua nota é $MEDIA! Melhora essa bosta!"
  23. }
  24.  
  25. main() {
  26.     _get_entries
  27.     _get_media
  28.     _verify_media
  29. }
  30.  
  31. main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement