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

Tag Archives: #WSQ09

Factorial Calculator

Here is my WSQ number 9 and heres is the code: https://github.com/juanmele/WSQ09.git

Factorial Calculator

Here is my WSQ number 9 and heres is the code: https://github.com/juanmele/WSQ09.git

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

WSQ09: Factorial Calculator

This WSQ was easy.
here is my code:
https://github.com/cortesivan96/WSQs/blob/master/Factorial

WSQ09: Factorial Calculator

This WSQ was easy.
here is my code:
https://github.com/cortesivan96/WSQs/blob/master/Factorial

#WSQ09

PIECE OF CAKE

#WSQ09

PIECE OF CAKE

#WSQ09

PIECE OF CAKE

Wsq09

Here is my code, I had a little trouble using the BigIntegersLibrary, but Ken helped me and made everything easier.
https://github.com/marinaruelas/WSQ/blob/master/wsq09

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