Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/feed-rss2.php on line 8
‘#70997a’ Articles at Courses by Ken https://kenscourses.com/tc101winter2015 Facilitator of Learning Experiences Wed, 06 May 2015 23:27:16 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #Mastery14 – Creating your own and using C++ libraries https://kenscourses.com/tc101winter2015/2015/mastery14-creating-your-own-and-using-c-libraries/ Wed, 06 May 2015 23:27:16 +0000 https://oswaldouliel.withknown.com/2015/mastery14---creating-your-own-and-using-c-libraries

Creación y uso de librerias en C++ 

Una de las ventajas de C++ es la facilidad de poder crear tus propias librerias, estas se pueden crear para definir variables con un significado mas especifico.

El ultimo caso que use fue el de la libreria:, esta libreria te permite utilizar el nombre de una variable y darle algun uso segun nuestras necesidades.

Por ejemplo:

GREEN "33[32m" 

PURPLE "33[35m"

BLUE "33[34m" 

 

Para aprender mas acerca de la creación de librerias pueden consultar los siguientes enlaces:

Libreria estatica   Libreria dinamica

 

14 1017

Continue reading ]]>

Creación y uso de librerias en C++ 

Una de las ventajas de C++ es la facilidad de poder crear tus propias librerias, estas se pueden crear para definir variables con un significado mas especifico.

El ultimo caso que use fue el de la libreria:, esta libreria te permite utilizar el nombre de una variable y darle algun uso segun nuestras necesidades.

Por ejemplo:

GREEN “33[32m” 

PURPLE “33[35m”

BLUE “33[34m” 

 

Para aprender mas acerca de la creación de librerias pueden consultar los siguientes enlaces:

Libreria estatica   Libreria dinamica

 

14 1017

]]>
https://creativecommons.org/licenses/by/4.0/
Calling Python functions https://kenscourses.com/tc101winter2015/2015/calling-python-functions-2/ Thu, 26 Mar 2015 04:28:15 +0000 https://digiart.withknown.com/2015/calling-python-functions Continue reading ]]>

– Calling Python functions                                                                              @PablO_CVi

To call a function, first you have to create one(You can see how to here) then you give the values or ask the user to input value or values to the function to work, the next step is to create a new variable and asign it the function, now you are up to call the function using a print you can print the valiabre you assigned to the function, it will print the result of the function with the numbers you or the user gived.

Here is the code of my example: https://github.com/PablOCVi/Mastery/blob/master/Mastery11.py

]]>
https://creativecommons.org/licenses/by/4.0/
Using elif… https://kenscourses.com/tc101winter2015/2015/using-elif/ Mon, 09 Feb 2015 17:58:06 +0000 http://digiart.withknown.com/2015/using-elif Continue reading ]]>

 – Use of “elif” with a conditional                                                                   @PablO_CVi

The keyword elif is short for ‘else if’, and is useful to introduce lots of if in the code.

my code is: https://github.com/PablOCVi/Mastery/blob/master/Mastery17.py

]]>
https://creativecommons.org/licenses/by/4.0/