Obj-C DevMtn

  1. Make a new Objective-C Project
  2. Write a method that prints the numbers from 1 to an inputed number. But for multiples of three print "Dev" instead of the number and for the multiples of five print "Mtn". For numbers which are multiples of both three and five print "DevMtn".

Black Diamond

Make a function in Objective-C that takes one parameter as an integer and returns the closest number in the Fibonacci sequence below the parameter. Then do it again using recursion.