🔧 Work in progress 🔧
Dipping my toes in Copmuter Science waters during COVID-19 crisis!
This repo contains the problem sets (assignments) as part of Harvard's introduction to the intellectual enterprises of computer science and the art of programming. The assignments are coded, run, tested, and submitted by using Harvard's CS50 IDE. The CS50 IDE is a cloud-based programming environment that includes CS50's own libraries, such as cs50.h.
Coming soon
C
Link to assignment: https://cs50.harvard.edu/x/2020/psets/1/
- Print Hello World
- Create a Super Mario Bro's pyramid between 1 and 8 levels
Height: 8
#
##
###
####
#####
######
#######
########
- Cash: A program that first asks the user how much change is owed and then prints the minimum number of coins with which that change can be made.
$ ./cash
Change owed: 0.41
4
$ ./cash
Change owed: -0.41
Change owed: foo
Change owed: 0.41
4