fork download
  1. #!/bin/bash
  2.  
  3. echo "---FIND THE GREATEST AMONG THREE NUMBERS---"
  4. echo "Enter 1st number:"
  5. read first_num
  6. echo "Enter 2nd number:"
  7. read second_num
  8. echo "Enter 3rd number:"
  9. read third_num
  10. if test $first_num -gt $second_num && test $first_num -gt $third_num
  11. then
  12. echo $first_num is the greatest number.
  13. elif test $second_num -gt $third_num
  14. then
  15. echo $second_num is the greaatest number.
  16. else
  17. echo $third_num is the greatest number.
  18. fi
  19.  
  20. read -p "Enter a number: " num
  21. if ((num % 2 == 0)); then
  22. echo "$num is even."
  23. else
  24. echo "$num is odd."
  25. fi
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
---FIND THE GREATEST AMONG THREE NUMBERS---
Enter 1st number:
Enter 2nd number:
Enter 3rd number:
is the greatest number.
 is even.