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

Tag Archives: #WSQ07

Sum of Numbers

Here is the homework it was easy Here is my code: Sumofnumbers.py

Sum of numbers

This task was about making a programm that asks the user for two integers. The user will read that the first number she/he types will be the begining of a serie of numbers and the second will be the end… Continue Reading →

Sum of Numbers

Here is the homework it was easy Here is my code: Sumofnumbers.py

#WSQ07

At first, I tried to only put add a plus-plus (++) the lowest bound, but I did not result as …

Continue reading

WSQ07, Sum of a range

HI everybody. I am going to show you how I done the WSQ07. There are different ways to do it, I used “for”. Here the image, to start: This was kind of easy (If you do not know how to use for, look for my post about it, it is on “Masteries” category). I think […]

WSQ07, Sum of a range

HI everybody. I am going to show you how I done the WSQ07. There are different ways to do it, I used “for”. Here the image, to start: This was kind of easy (If you do not know how to use for, look for my post about it, it is on “Masteries” category). I think […]

Sum of Numbers

This program asks the user for a range of number and gives the sum of each one of the numbers contained in the range.

#WSQ07

This one was a little bit tricky but it wasn’t really difficult. #include <iostream> using namespace std; int main (){ int x; int y; int z = 0; cout << “Suma de los numeros entre 2 numeros” << endl; cout << “Put the first number”; cin >> x; cout << “Put the second number”; cin […]

#WSQ07

This one was a little bit tricky but it wasn’t really difficult. #include <iostream> using namespace std; int main (){ int x; int y; int z = 0; cout << “Suma de los numeros entre 2 numeros” << endl; cout << “Put the first number”; cin >> x; cout << “Put the second number”; cin […]

WSQ07 Sum of Numbers

Wow,this was hard Most than anything WHILE TRUE is great for loops if you want a specific type of value but you should remember to break because if you dont you will end up in endless loop. but it was really hard to add a conditional where if the low number isnt low, the program […]

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