Tag Archives for Arithmetic Operations
Arithmetic Operations – Menu Driven
# Menu driven program to perform arithmetic operations echo "Enter 2 Numbers" read a b opt=0 while [ $opt -ne 6 ] do echo "Menu 1. Additon 2. Subtraction 3. Multiplication 4. Division 5. Modulus 6. Exit" read opt case … Continue reading

