Fundamentals of Computer Science I (CS151.02 2007S)
[Skip to Body]
Primary:
[Front Door]
[Syllabus]
[Glance]
[Search]
-
[Academic Honesty]
[Instructions]
Current:
[Outline]
[EBoard]
[Reading]
[Lab]
[Assignment]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Projects]
[Readings]
Reference:
[Scheme Report (R5RS)]
[Scheme Reference]
[DrScheme Manual]
Related Courses:
[CSC151 2006F (Rebelsky)]
[CSC151.01 2007S (Davis)]
[CSCS151 2005S (Stone)]
Back to Input and Ouptut. On to Simulation.
This outline is also available in PDF.
Held: Wednesday, February 28, 2007
Summary: Today we expand our exploration of input and output to include files, particularly how one recurses over files.
Related Pages:
Notes:
Overview:
read a value and square itproblem in which you repeatedly prompt when given a non-number.
(letrec ((prompt-and-square (lambda () ... ; if it's not a nubmer, try again (prompt-and-square) ...))) (prompt-and-square))
anythingyou can do on the computer.
(open-input-file file-name)
.
(open-output-file file-name)
.
(read port)
(newline port)
(write value port)
(display value port)
(close-input-port port)
(close-output-port port)
read
do when there's nothing left in the file?
It returns a special value (which DrScheme displays as
#<eof>
).
eof-object?
(define recursive-proc (lambda (val) (if (base-case-test) (base-case val) (combine (partof val) (recursive-proc (simplify val))))))
(eof-object? (peek-char input-port))
(define recursive-proc (lambda (input-port other-params) (if (eof-object? (peek-char input-port)) (close-and-return input-port (base-case other-params)) (combine (read input-port) (recursive-proc input-port other-params))))) (define close-and-return (lambda (input-port return-value) (close input-port) return-value))
Back to Input and Ouptut. On to Simulation.
[Skip to Body]
Primary:
[Front Door]
[Syllabus]
[Glance]
[Search]
-
[Academic Honesty]
[Instructions]
Current:
[Outline]
[EBoard]
[Reading]
[Lab]
[Assignment]
Groupings:
[EBoards]
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Projects]
[Readings]
Reference:
[Scheme Report (R5RS)]
[Scheme Reference]
[DrScheme Manual]
Related Courses:
[CSC151 2006F (Rebelsky)]
[CSC151.01 2007S (Davis)]
[CSCS151 2005S (Stone)]
Disclaimer:
I usually create these pages on the fly
, which means that I rarely
proofread them and they may contain bad grammar and incorrect details.
It also means that I tend to update them regularly (see the history for
more details). Feel free to contact me with any suggestions for changes.
This document was generated by
Siteweaver on Thu Sep 13 20:54:46 2007.
The source to the document was last modified on Thu Jan 18 12:30:12 2007.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2007S/Outlines/outline.23.html
.
You may wish to
validate this document's HTML
;
;
http://creativecommons.org/licenses/by-nc/2.5/
or send a letter to Creative Commons, 543 Howard Street, 5th Floor,
San Francisco, California, 94105, USA.