Changes between Version 1 and Version 2 of ProgrammingPrompts


Ignore:
Timestamp:
Jan 23, 2015, 9:04:49 AM (10 years ago)
Author:
Timothy Lin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProgrammingPrompts

    v1 v2  
    22Feel to add good prompts into this list as you find them. This will greatly help future software team leads and new members.
    33== 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
     9B
     10>>> 69.51
     11C
     12>>> 106.33
     13A
     14
     15}}}
     16
     17===
    418== Medium
    519== Hard (Object-Oriented)