CPSC120
Fundamentals of Computer Science

In-class Activity 14

  1. Lowest to Highest

    Create a Python function that takes three ints and prints them from lowest to highest.

  2. Grade Conversion

    Create a Python function that takes a numeric grade from 0 to 100 and prints the associated letter grade using the following scale:

    A = [90, 100]
    B = [80, 90)
    C = [70, 80)
    D = [60, 70)
    F = [0, 60)