``People who know neither programming nor mathematics take for granted that programming is like mathematics. Yet, it turns out that English majors are as likely to be as successful at programming as mathematics graduates are. In practice, the worlds of mathematics and programming are just about disjoint.'' -M.H. van Emden, Communications of the ACM, 32(12), p. 1498, December 1989.
Class Time: | TR 1:15-2:30 |
Classroom: | WGR 206 |
Instructor: | Mark Maloof |
Office: | 240 Reiss |
Mailbox: | 240 Reiss |
Office Hours: | None for 24–25 academic year. (or by appointment) |
Name | Netid | Office Hours | Grading |
Nathaniel Guy | nmg5 | Sa 2-6 PM | ajs-eks |
Matt Krause | mrk6 | W 7:30-9:30 PM, F 9-11 AM | eo-mag |
Sara Wallace | sbw3 | M 2:40-6:40 PM | mea-slp |
TA's Office: 261 Reiss
TA's Mailboxes: 240 Reiss
string Grades::toLetterGrade() { if (grade >= 94) return "A"; else if (grade >= 90) return "A-"; else if (grade >= 87) return "B+"; else if (grade >= 84) return "B"; else if (grade >= 80) return "B-"; else if (grade >= 77) return "C+"; else if (grade >= 74) return "C"; else if (grade >= 70) return "C-"; else if (grade >= 67) return "D+"; else if (grade >= 64) return "D"; else return "F"; } // Grades::toLetterGrade
Copyright © 2019 Mark Maloof. All Rights Reserved. This material may not be published, broadcast, rewritten, or redistributed.