瀏覽代碼

initial commit

Froilan Miranda 7 年之前
當前提交
15744bc85a
共有 2 個文件被更改,包括 92 次插入0 次删除
  1. 69
    0
      .gitignore
  2. 23
    0
      README.md

+ 69
- 0
.gitignore 查看文件

@@ -0,0 +1,69 @@
1
+
2
+# Created by https://www.gitignore.io/api/intellij
3
+
4
+### Intellij ###
5
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
6
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7
+
8
+# User-specific stuff:
9
+.idea/**/workspace.xml
10
+.idea/**/tasks.xml
11
+.idea/dictionaries
12
+
13
+# Sensitive or high-churn files:
14
+.idea/**/dataSources/
15
+.idea/**/dataSources.ids
16
+.idea/**/dataSources.xml
17
+.idea/**/dataSources.local.xml
18
+.idea/**/sqlDataSources.xml
19
+.idea/**/dynamic.xml
20
+.idea/**/uiDesigner.xml
21
+
22
+# Gradle:
23
+.idea/**/gradle.xml
24
+.idea/**/libraries
25
+
26
+# CMake
27
+cmake-build-debug/
28
+
29
+# Mongo Explorer plugin:
30
+.idea/**/mongoSettings.xml
31
+
32
+## File-based project format:
33
+*.iws
34
+
35
+## Plugin-specific files:
36
+
37
+# IntelliJ
38
+/out/
39
+
40
+# mpeltonen/sbt-idea plugin
41
+.idea_modules/
42
+
43
+# JIRA plugin
44
+atlassian-ide-plugin.xml
45
+
46
+# Cursive Clojure plugin
47
+.idea/replstate.xml
48
+
49
+# Crashlytics plugin (for Android Studio and IntelliJ)
50
+com_crashlytics_export_strings.xml
51
+crashlytics.properties
52
+crashlytics-build.properties
53
+fabric.properties
54
+
55
+### Intellij Patch ###
56
+# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
57
+
58
+# *.iml
59
+# modules.xml
60
+# .idea/misc.xml
61
+# *.ipr
62
+
63
+# Sonarlint plugin
64
+.idea/sonarlint
65
+
66
+# End of https://www.gitignore.io/api/intellij
67
+
68
+### System ###
69
+.DS_Store

+ 23
- 0
README.md 查看文件

@@ -0,0 +1,23 @@
1
+## Conversion Tool
2
+
3
+This tool converts different units of measure. Methods have been stubbed out to convert the following:
4
+
5
+- Centimeters <-> Inches
6
+- Feet <-> Meters
7
+- Celcius <-> Fahrenheit
8
+- MPH <-> KPH
9
+
10
+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) 
11
+
12
+Complete the implementation so that all test pass
13
+
14
+---
15
+
16
+This lab covers the following competencies:
17
+
18
+- Variable instaniation
19
+- Constants
20
+- Order of operations
21
+- Conditionals
22
+- Block scope
23
+- Floating point arithmatic