Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Take the following code and rewrite it using a switch statement (Your code should not have an if-then-else statement when finished): #!/bin/bash read -p Enter
Take the following code and rewrite it using a switch statement (Your code should not have an if-then-else statement when finished):
#!/bin/bash
read -p "Enter your age: " AGE
if [ $AGE -lt 20 ]; then
echo "You are just a teenager!"
elif [ $AGE -lt 30 ]; then
echo "You are a young adult!"
elif [ $AGE -lt 40 ]; then
echo "You are a moderate age adult!" else echo "You are really old!"
fi
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started