Functional Problem Solving (CSC 151 2015S) : Outlines
Primary: [Front Door] [Schedule] - [Academic Honesty] [Disabilities] [Email] - [FAQ] [Teaching & Learning] [Grading] [Taking Notes] [Rubric] - [Calendar]
Current: [Assignment] [EBoard am] [EBoard pm] [Lab] [Outline] [Reading]
Sections: [Assignments] [EBoards am] [EBoards pm] [Labs] [Outlines] [Readings] - [Examples] [Handouts]
Reference: [Setup] [VM] [Errors] - [Functions A-Z] [Functions By Topic] - [Racket] [Scheme Report (R5RS)] [R6RS] [TSPL4]
Related Courses: [Davis (2013F)] [Rebelsky (2014F)] [Weinman (2014F)]
Misc: [Submit Questions] - [SamR] [Glimmer Labs] [CS@Grinnell] [Grinnell] - [Book Office Hours] - [Issue Tracker (Course)]
Held: Friday, 10 April 2015
Back to Outline 38 - Vectors. On to Outline 40 - On Two-Dimensional Design.
Summary
We consider Scheme's random procedure, how one might use that procedure
in writing simple simulations, and how the procedure can be used to
generate "unpredictable" images.
Related Pages
Overview
random procedure.Administrivia
random Procedure(random n) procedure.n must be a positive integer.random returns an integer between 0 and n-1,
inclusive.