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
‘#if’ Articles at TC101 Fall 2015
Introduction to Programming Python and C++

Tag Archives: #if

Use of IF and ELSE in C++

IF. As you might know, an if statement is the one that allows the user to control if a program enters a section of code or not based on whether a given condition is true or false. One of the… Continue Reading →

Use of the conditional “if”

Today I am going to explain you what “if” is for in c++. Here’s a video done by myself for you: And now here’s a simple code example: #include <iostream> using namespace std; int hours; int main() { cout<<“How many hours of study do you need to approve?”; cin>>hours; if (hours>5) cout<<“You should start now”<<endl; […]

Masteries 15 and 16 – If and Else

Here I will show you that I know how to use IF and ELSE stamentes.This is the basic form, I put it simple to understand the syntax quickly. Here are some works that I made using IF and ELSEs.If you want to know more check my WSQs.

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).