dmobile1337


Joined 2 years ago
Homeworks submitted:
Homework comments:
1
0

About Me

No description provided.

Classes

MIT OpenCourseWare 6.00 Introduction to Computer Science and Programming

Class status: Established
Role: Student
. 5% complete

Submitted Assignments

MIT OpenCourseWare 6.00 Introduction to Computer Science and Programming: Lesson 1, HW 1

Sorry, doing mine in Python 3.1.1 as it is what I can read easier and I like the challenge of converting the coursework to 3.1.1. If this is going to be a problem going forward please let me know.

#Problem Set 0
#Name: Dick Jones
#Collaborators: N/A
#Time: 3 minutes
#

firstName = input("What is your first name?\n")
lastName = input("What is your last name?\n")
print('Greetings, ' + firstName + ' ' + lastName + '!')

dmobile1337 2 years ago