Changes between Version 1 and Version 2 of ProgrammingPrompts
- Timestamp:
- Jan 23, 2015, 9:04:49 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProgrammingPrompts
v1 v2 2 2 Feel to add good prompts into this list as you find them. This will greatly help future software team leads and new members. 3 3 == Simple 4 === Grade Analyzer 5 '''Program Specs:''' You receive an arbitrary {{{double}}} value and you must return whether that grade constitutes an 'A', 'B', 'C', 'D', or 'E'.[[BR]][[BR]] 6 '''Examples:''' 7 {{{ 8 >>> 85.60 9 B 10 >>> 69.51 11 C 12 >>> 106.33 13 A 14 15 }}} 16 17 === 4 18 == Medium 5 19 == Hard (Object-Oriented)