add problem set 0

pull/357/head
Eric Douglas 2014-05-14 21:22:31 -03:00
parent 3ffc2cd4af
commit c136a54d87
2 changed files with 12 additions and 0 deletions

View File

@ -39,3 +39,7 @@ A straight line program simply goes through and carries out each step. A branchi
### What is a conditional?
A conditional statement starts with an if statement, and can also include elif and else.
## Problem Sets
* [Problem Set 0](http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-00sc-introduction-to-computer-science-and-programming-spring-2011/unit-1/lecture-2-core-elements-of-a-program/MIT6_00SCS11_ps0.pdf)

View File

@ -0,0 +1,8 @@
# Problem Set 0
# Name: Eric Douglas
# Time Spent: 3:10
birthday = raw_input('When is your birthday?\n')
lastName = raw_input('What is yout last name?\n')
print lastName + ' ' + birthday