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

Tag Archives: #conditional

Use of ”else” with a conditional

My last post was about the use of ”if” as a condition in c++. Now I should complement that post with an explanation about ”else”. When we use ”if”, we declare a condition. Then we make our program do something under that condition. But, what happens if the condition is not accomplished? Well, if we […]

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; […]

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