Skip to content

Instantly share code, notes, and snippets.

@mdang
Last active February 15, 2016 14:29
Show Gist options
  • Select an option

  • Save mdang/931bf4eb58567facfd41 to your computer and use it in GitHub Desktop.

Select an option

Save mdang/931bf4eb58567facfd41 to your computer and use it in GitHub Desktop.
Exercise: Currency Converter

Currency Converter

20 min

Find the exchange rate between dollars and pounds

  • Write a function dollarsToPounds that takes a dollar number as input and outputs a string of what the pound equivalent is.

"$_____ is £_____"

  • Write a function poundsToDollars that takes a pound number as input and outputs a string of what the dollar equivalent is.

"£_____ is $_____"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment