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

Author Archives: juande1097

#WSQ13

Here is the code: https://github.com/juande1097/WSQ/blob/master/WSQ%2313

#WSQ12

here is the code: https://github.com/juande1097/WSQ/blob/master/WSQ%2312

Quizz #11

Code in Github
https://github.com/juande1097/Quizz-11
Question#1
https://github.com/juande1097/Quizz-11/blob/master/Question%231
Question#2
https://github.com/juande1097/Quizz-11/blob/master/Question%232
 

Final Proyect Week 2

Esta semana descargamos la librería en Ubuntu, hicimos un programa para probar la librería y recortamos una imagen. visitamos estas páginas http://www.imagemagick.org/Magick++/ http://www.imagemagick.org/api/Image.php

Encuesta

Final Proyect Week 1

This week we only saw some tutorial videos to get involved with what the proyect will be about.
Here are the links of the tutorials.

#WSQ 11

#WSQ 11 #include <iostream> #include “BigIntegerLibrary.hh” using namespace std; int arr; int ab; int nat=0; int non=0; int ly=0; BigInteger rev; BigInteger num; BigInteger reverse(BigInteger valid){ BigInteger invalid= 0; while (valid != 0){ invalid= invalid*10 + valid % 10; valid= valid/10; } return invalid; } void palindrome(BigInteger n, BigInteger r){ if(n == r){ nat =…

Masteries 19 y 20

19. Use of loops with “while” 20. Use of loops with “for”

Masteries 15 y 16

15.  Use of the conditional “if” 16. Use of “else” with a conditional

#WSQ10

#WSQ10 #include <iostream> #include <vector> #include <cmath> using namespace std; void promedio(vector <int> cuadr){ int x; double y =0; cout << “Escribe los valores que deseas calcular” << endl; cout << “Escribe 0 cuando no desees seguir calculando números” << endl; cin >> x; while (x !=0){ cuadr.push_back(x); cin >> x;} double suma; for (int…

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