Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152
‘#Mastery20’ Articles at TC101 Fall 2015, Page 2
Introduction to Programming Python and C++

Tag Archives: #Mastery20

Masteries 19 & 20

Use of loops with “while” Use of loops with “for”

mastery 19 y 20

Mastery 20

#Masteries 19 and 20

Mastery 19. Use of loops with “while”… Mastery 20. Use of loops with “for”… And here my video:

Mastery 20

On this mastery I will show you what a FOR loop in C++ is and how to use it.

A FOR loop is a type of loop which allows you to give specific conditions to it, and then repeat when this conditions are true. 
A for loop consists of four parts: an initializer (declaration of what happens first to the variable; it only happens once), a condition (evaluates and proceeds with the code if its true, if not it will stop), an incremet (this updates the variable after the code is completed and increments the variable), and the statement (what will happen when the conditions are true). In a flow chart, for loops look something like this:

Now, let’s create a program which displays the factorial of a given number. Factorial is the result of the multiplication of all numbers starting from 1 to the number you want to know its factorial. For example, 5 factorial is 1 x 2 x 3 x 4 x 5 which = 120. 

Let’s make that program using a for loop, so do as follows:

  1. Create two variables, x which will be the user input and another one called factorial which equals to 1. 
  2. Ask the user for the variable.
  3. Make the for loop. The for loop has to have the four parts in order to be complete. Initialize your variable a in 1, then condition it with a less or equal to the user input (this is where the loop will know when to stop), mark the increment, and write the statement, which is factorial equals to factorial multiplied by a.
  4. Print the result.

Your code should look something like this:

Now lets test the program with factorial 5, which should be equal to 120.

That’s it, you now know how to use a for loop, congrats!

Masteries 19 & 20: loops with while and for

Hi again there! Here is my video for #Mastery19 & #Mastery20:

Mastery 19 & Mastery 20

Hello everybody, this post is to explain the basic use of while loops and for loops. While is a loop that will be performed if the conditions inside its definition is true. Yes, you are right… again boolean value. If the condition inside the while returns the value true then the code under the while […]

#MASTERY20

Masteries 19 & 20

Masteries 19 & 20

What should you work on?

Week #12 and more partial exams for you.

For this week's readings:
C++ (TC1017) should either be looking at support for your project, ImageMagick C++ libraries are a good start.
Python (TC1014) should be finishing chapter 11 (Dictionaries).