Create a program that returns

4.19 LAB: The UCSB surroundings tour guide!

 

Please keep unit.

Learning Objectives

In this lab, you will

  • Use Boolean operators (and/or/not) to specify a range
  • Use if/elif/else to correctly select a place and produce the specified output

Instructions

Main Idea

The UCSB surroundings tour guide!

We assume that students want to spend their free time doing a little bit of sightseeing, and want to know when they can go if they know the distance that they can walk in miles. Since we do not really know where the user is, the result will not be very accurate.

Create a program that returns one of the interesting places, available within a given distance in miles. (Some users do not like to do too much walking 🙂 )

Return the corresponding trip destination based on the value of the user input using the following guidelines:

[0 – 2]: “Lake Los Carneros Park” (2 – 7]: “Elings Park” (7 – 11]: “Gibraltar Rock” (11 – 20]: “Carpinteria State Beach” (20 – 30]: “Oxnard” (30 – 100]: “Los Angeles”

Here, the open parenthesis ( , indicates that we are not including this value, and the square brackets [] mean that the value is included in the range.

Steps

  1. Input (read) a valid integer and store it as the given distance.
  2. If the given distance is outside the range of [0 – 100], display the message Please enter a valid distance between 0 and 100 miles..
  3. Write a function get_destination that takes the given distance as a parameter and returns the destination
  4. Call the function get_destination, when the given distance is within the [0 – 100] range)
  5. Print the message How about visiting <destination>, it is about <given_distance> miles away. where the destination is the return from the function get_destination

Examples

Input

8

Output

How about visiting Gibraltar Rock, it is about 8 miles away.

Input

30

Output

How about visiting Oxnard, it is about 30 miles away.

Input

120

Output

Please enter a valid distance between 0 and 100 miles.

Input

-100

Output

Please enter a valid distance between 0 and 100 miles.

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more