User Tools

Site Tools


cs330_f2016:racketbasics

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
cs330_f2016:racketbasics [2016/08/10 16:47]
morse
cs330_f2016:racketbasics [2021/06/30 23:42] (current)
Line 1: Line 1:
 +
 ====Objective:​==== ====Objective:​====
  
Line 8: Line 9:
  
 Download the latest version of DrRacket from [[http://​racket-lang.org]] and install it on your computer. ​ Versions are available for Windows, Mac OS X, and Linux. Download the latest version of DrRacket from [[http://​racket-lang.org]] and install it on your computer. ​ Versions are available for Windows, Mac OS X, and Linux.
 +
 +Please also take a look at [[cs330_f2016:​turnin|how to turn in your assignments]]. ​
  
 ---- ----
Line 23: Line 26:
 (define (sum-coins pennies nickels dimes quarters) ...) (define (sum-coins pennies nickels dimes quarters) ...)
 </​code>​ </​code>​
-where ''​pennies'',​ ''​nickels'',​ ''​dimes'',​ and ''​quarters''​ are all non-negative numbers and the value returned is the total value of the coins.+where ''​pennies'',​ ''​nickels'',​ ''​dimes'',​ and ''​quarters''​ are all non-negative numbers and the value returned is the total value of the coins in cents.
  
 === degrees-to-radians === === degrees-to-radians ===
Line 43: Line 46:
 where ''​angle''​ is a number representing either degrees or radians, type is either '''​degrees''​ or '''​radians''​ (a symbol) indicating how ''​angle''​ is represented,​ and the value returned is the sin of ''​angle''​. where ''​angle''​ is a number representing either degrees or radians, type is either '''​degrees''​ or '''​radians''​ (a symbol) indicating how ''​angle''​ is represented,​ and the value returned is the sin of ''​angle''​.
  
-----+Hint: use ''​symbol=?''​ to test for symbol equality: ''​(symbol=?​ x '​degrees)''​.
  
 +----
 ====Notes:​==== ====Notes:​====
  
Line 56: Line 60:
 Try clicking on the Step button to walk through your code and watch the equivalent sequence of substitutions that are performed. Try clicking on the Step button to walk through your code and watch the equivalent sequence of substitutions that are performed.
  
-Use ''​check-expect''​ and ''​check-within''​ to write your own unit tests for your code.+
  
cs330_f2016/racketbasics.1470847644.txt.gz · Last modified: 2021/06/30 23:40 (external edit)