Lauren Green eaaefd15ee Conversion methods written and tested. 6 vuotta sitten
.idea Conversion methods written and tested. 6 vuotta sitten
src Conversion methods written and tested. 6 vuotta sitten
target Conversion methods written and tested. 6 vuotta sitten
.gitignore initial commit 7 vuotta sitten
README.md initial commit 7 vuotta sitten
conversion.iml Conversion methods written and tested. 6 vuotta sitten
pom.xml add project files 7 vuotta sitten

README.md

Conversion Tool

This tool converts different units of measure. Methods have been stubbed out to convert the following:

  • Centimeters <-> Inches
  • Feet <-> Meters
  • Celcius <-> Fahrenheit
  • MPH <-> KPH

This tool should only convert positive numbers. Any negative numbers that are passed should return 0 (This excludes temperature conversions, negative values can be converted)

Complete the implementation so that all test pass


This lab covers the following competencies:

  • Variable instaniation
  • Constants
  • Order of operations
  • Conditionals
  • Block scope
  • Floating point arithmatic