CSC 270 - Survey of Programming Languages
Assignment #15 - Evaluating Expressions
Due Friday, November 17, 2017
Using Dr. Racket, evaluate the following expressions:
- (+ 4 2)
- (- 37 55)
- (/ 108 12)
- (* 3.5 6.9)
- (/(+(- 2002 1965) (- 1999 1966)) 2)
- (*(-(+ 22 12) (- 30 17)) 3)
- (sin (/ 90 pi))
- (log(/ 8 2.3))
- (expt 10 0.4771)
- (remainder (+ 37 55) (- 108 97))
[Back to the Assignment Index]