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

Author Archives: alan46bc

Bonus Quiz

Avance Proyecto Final

Ya descargamos la libreria que utlizaremos para editar las imagenes. La descargamos del siguiente vínculohttp://www.imagemagick.org/script/binary-releases.php

#WSQ10

This programm was a little bit difficult but I read other posts and read and I succes by making the programm work. #include <iostream> #include <vector> #include <math.h> using namespace std; void promedio(vector <int> prom){ int x; double y=0; cout <<“Escribe los valores que deseas calcular” << endl; cout <<“Escribe -1 cuando no desees seguir […]

#WSQ10

This programm was a little bit difficult but I read other posts and read and I succes by making the programm work. #include <iostream> #include <vector> #include <math.h> using namespace std; void promedio(vector <int> prom){ int x; double y=0; cout <<“Escribe los valores que deseas calcular” << endl; cout <<“Escribe -1 cuando no desees seguir […]

#WSQ11

This one was really difficult so I start searching for help but I couldn’t find it. I decided to search the blogs of other people to see how they did it and I found one, in the post it said that we should watch ken’s video of bigintegers and I did. after that it was […]

#WSQ11

This one was really difficult so I start searching for help but I couldn’t find it. I decided to search the blogs of other people to see how they did it and I found one, in the post it said that we should watch ken’s video of bigintegers and I did. after that it was […]

#WSQ09

#include <iostream> #include <cstdio> using namespace std; unsigned long long factorial (int x){ unsigned long long z=1; while (x>=1) { (z=z*x); (x=x-1); } return z; } int main (){ int x; char resp; cout <<“numero factorial ” <<endl; cout <<“pon un numero “; cin >> x; cout << “El factorial de los numeros= “; cout […]

#WSQ09

#include <iostream> #include <cstdio> using namespace std; unsigned long long factorial (int x){ unsigned long long z=1; while (x>=1) { (z=z*x); (x=x-1); } return z; } int main (){ int x; char resp; cout <<“numero factorial ” <<endl; cout <<“pon un numero “; cin >> x; cout << “El factorial de los numeros= “; 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 […]

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