Coding 101 3: Do While Conditioner

Coding 101 3: Do While Conditioner

Avatar

Hosts: Fr. Robert Ballecer, SJ and Shannon Morse

Guest: Lou Maresca

Welcome to Coding 101 - It's the TWiT show that gives YOU the knowledge to live in the wonderful world of the programmer. This week we are taking a look at Xamarin Studio on Mac OSX, While Loops, For Loops, and Relational Operators.

Reviewing While Loops and A Mac OSX IDE Option

How do I download and compile my first code on a Mac?
Download the C# Compiler from the MonoDevelop website.
* Choose the Xamarin Studio package and download it.
* Click on the Mono + GTK# download link.
* Download the Intel Mac: Runtime or SDK links and install.
* Once all three programs are installed, open the Xamarin Studio application.
* From the main page, choose New, C#, Console Application.
* Start writing your code!

My While Loop looks like this:
* int counter = 368; - This will give me an integer variable called counter, which equals 368.
* while (counter > 0) - This is the start of my while loop, with counter being greater

Comments

Avatar