Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 1.14 KB

README.md

File metadata and controls

51 lines (37 loc) · 1.14 KB

🔧 Work in progress 🔧

This is CS50! 👩🏽‍💻

About

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.

Reflection

Coming soon

Languages

C

Problem Set 1

Link to assignment: https://cs50.harvard.edu/x/2020/psets/1/

  1. Print Hello World
  2. Create a Super Mario Bro's pyramid between 1 and 8 levels
Height: 8
       #
      ##
     ###
    ####
   #####
  ######
 #######
########
  1. 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