Hover over an image below for more information about the exercise, and click on the title to view it. These exercises share a few common functions.
Simple Statistics
A calculator that accepts 5 numbers from the user, and returns the least, greatest, mean, sum, and product values.
Factorial Calculator
A calculator that returns the factorial of a number. The factorial of a non-negative integer n is the product of all positive integers less than or equal to n. (i.e. 5! = 5 x 4 x 3 x 2 x 1 = 120)
FizzBuzz
A program that accepts two numbers from the user. 1 to 100 is then printed on the screen. For each number that is a multiple of the first number, "Fizz" is printed instead of the number. For each number that is a multiple of the second number , "Buzz" is printed. For numbers that are multiples of both numbers, "FizzBuzz" is printed.
Palindrome
A program that determines whether a given word is a palindrome (the same spelled backwards as it is forwards).