Due: Tuesday 09/18 10:00am
Submission name: work04.rkt
Submitting your work using GitHub Classroom:
- Join the GitHub classroom assignment via the correct link:
- Period 9: https://classroom.github.com/a/pQDHKUhf
- Period 10: https://classroom.github.com/a/L22rWK5Q
- After following that link, click “Accept this assignment”
- After ~1 minute (maybe less), refresh the page.
- You should see a link that looks something like: https://github.com/stuycs-gh-classrooms/09-fcs-dw-work-jonalf
- The end of that url will differ based on your GitHub username and the beginning by your class period. Click on that url.
- This is where you will submit all your work, bookmark this page.
- This will create a GitHub repository for you, and add a basic
README.md
file to it.
- You will be taken to the repository page for your work. You will see the contents of
README.md
, which should display: “Work For NeXtCS” and then “Name: YOUR NAME HERE”. - Edit
README.md
by clicking on the pencil icon found to the far right ofREADME.md
- Replace “YOUR NAME HERE” with your full name, first then last (use preferred name if you’d like).
- Find the “Commit changes” button and click it.
- When you’ve finished the homework, use the “Add File -> Upload Files” button to upload your
work03.rkt
file.
Important Notes:
- Use the submission name listed above as the file name for your work.
- Make sure you are using the definitions pane to write your programs, and that you are saving that area when submitting.
- Use the interactions pane to test your code, but you do not submit what is there.
- The CS Dojo starts today! If you want to get a leg up, stop by 307 from 3:45 - 5!
- If you are having difficulty getting DrRacket to work on your computer, you can use this online editor:
Work Task:
- Read chapter 4 of the online textbook.
- Take the 3 formulas from the previous assignment, and make the functions using
lambda
anddefine
. - If done correctly, this code should work (as long as you named the functions the same as I did):
(triArea 12 5) (celToFaran 100) (gravity 27 2 3)