• Exercise 2: Write a script that print all even number from n1 to n2, n1 and 2 are provided by user. (while loop)

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter14: Files And Streams
Section: Chapter Questions
Problem 1E
icon
Related questions
icon
Concept explainers
Question
Exercise 1: Please run the example code from
previous pages.
Exercise 2: Write a script that print all even number
from n1 to n2, n1 and 2 are provided by user. (while
loop)
Exercise 3: Write a menu script that has 3 option,
option 1: list all file current directory, option 2:
create a file call hello.py, option 3: exit.
Transcribed Image Text:Exercise 1: Please run the example code from previous pages. Exercise 2: Write a script that print all even number from n1 to n2, n1 and 2 are provided by user. (while loop) Exercise 3: Write a menu script that has 3 option, option 1: list all file current directory, option 2: create a file call hello.py, option 3: exit.
# ! /bin/bash
press_enter()
{
echo -en "\nPress Enter to continue"
read
clear
selection=
until [ "$selection" = "0" ]; do
echo
PROGRAM MENU
1 - display free disk space
2 - display free memory
0 - exit program
%3D
echo -n "Enter selection: "
read selection
echo
case $selection in
1 ) df ; press_enter ;;
2 ) free ; press_enter ;;
0 ) exit ;;
* ) echo "Please enter 1, 2, or 0"; press_enter
esac
done
Transcribed Image Text:# ! /bin/bash press_enter() { echo -en "\nPress Enter to continue" read clear selection= until [ "$selection" = "0" ]; do echo PROGRAM MENU 1 - display free disk space 2 - display free memory 0 - exit program %3D echo -n "Enter selection: " read selection echo case $selection in 1 ) df ; press_enter ;; 2 ) free ; press_enter ;; 0 ) exit ;; * ) echo "Please enter 1, 2, or 0"; press_enter esac done
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 2 images

Blurred answer
Knowledge Booster
Control Structure
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT