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/29 22:02]
morse [Hints:]
cs330_f2016:racketbasics [2021/06/30 23:42] (current)
Line 9: 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 24: 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 44: 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:​====
  
cs330_f2016/racketbasics.1472508144.txt.gz ยท Last modified: 2021/06/30 23:40 (external edit)