Skip to content

Instantly share code, notes, and snippets.

@elskwid
Created March 5, 2015 21:56
Show Gist options
  • Save elskwid/3f6fcac7c9d50fe7e6bd to your computer and use it in GitHub Desktop.
Save elskwid/3f6fcac7c9d50fe7e6bd to your computer and use it in GitHub Desktop.
TECH601 Spring 2015 warmup Day 2
# 1. create a variable named 'a' with the value of 1 and display 'a'
# 2. create a variable named 'b' with the value of 2 and display 'b'
# 3. create a variable named 'c' with the value of 3 and display 'c'
# 4. create a variable named 'd' with the value of 10 and display 'd'
# 5. add 'a' and 'b' and display the result
# 6. add 'a' and 'd' and display the result
# 7. add 'a' and 'b' and 'c' and 'd' and display the result
# 8. multiply 'd' and 'b' and display the result
# 9. multiple 'd' by itself and display the result
# 10. divide 'd' by 'b' and display the result
# 11. divide 'd' by itself and display the result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment