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

Tag Archives: #WSQ08

If it works, don’t fix it. – WSQ08

For this WSQ we have to go to WSQ03 and make every option a function a int function being specific, so dow below is the link for this WSQ. Have a nice week. The Source Code Link flickr photo by Mario Klingemann Creative Commons Public Domain

WSQ08

https://github.com/estebanpinal/WSQ/blob/master/WSQ08

On to functions

Quiet simple, since its the same as one of the first activities, the difference being that we used functions in this one.

WSQ08

Some functions inside one big function… So we had to repeat WSQ 3 with a little twist. Now all of the operations we did have to be written in functions. This was one of the easiest WSQ’s looking back on it, and still very useful and basic for the understanding of C++. Here’s the usual … Continue reading WSQ08

WSQ08 – On to functions

This was very easy! It was like repeating the WSQ03, just that with functions, this is something that wasn’t very difficult. Here is my code: https://github.com/Andreandc/TC1017/blob/master/WSQ08

#WSQ08

// WSQ08 Functions #include <iostream> using namespace std; int suma (int p, int t) { int s = p+t; return s; } int resta (int p, int t) { int r = p-t; return r; } int division (int p, int t) { int d = p/t; return d; } int residuo (int p, int […]

WSQ 8 – On To Functions

Working with functions. Here’s the code: And the test of the code:

On To Functions

 

#WSQ08

#include <iostream> using namespace std; int sum (int x, int y){ return x+y; } int dif (int x, int y){ return x-y; } int prod (int x, int y){ return x*y; } int divv (int x, int y){ return x/y; } int rem (int x, int y){ return x%y; } int main(){ int x,y; cout […]

#WSQ08

#include <iostream> using namespace std; int sum (int x, int y){ return x+y; } int dif (int x, int y){ return x-y; } int prod (int x, int y){ return x*y; } int divv (int x, int y){ return x/y; } int rem (int x, int y){ return x%y; } int main(){ int x,y; cout […]

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