Tag Archives: #mastery13

Mastery13

#Mastery13 #TC1017

Importing and using C++ libraries:

Les dejo un tutorial a cerca de cómo importar y usar algunas librerias en c++, link del video abajo: 

 

YOUTUBE;

 

http://youtu.be/Uo8jHdXUGfA?hd=1

#Mastery13

Las librerías son archivos que permiten realizar distintas acciones de una manera más simple y eficiente. El uso de librerías nos ayuda a ahorrarnos una gran cantidad de tiempo y líneas de código, por tal motivo es muy útil saber implementarlas en los programas.

Para incluir ciertas librerías en nuestros programas es necesario escribir lo siguiente:

<NombreDeLaLibrería>

Por ejemplo tenemos:

<iostream>, <cmath>, <vector>, entre otras…

Para ejemplificar el uso de librerías y explicarlas con mayor detalle, hice una pp, puedes encontrarla en el siguiente link:

https://drive.google.com/file/d/0B-NM4ghaDXBvQ0pjcjEwcFh5VkE/view?usp=sharing

Realicé un ejemplo en el que se utiliza la librería cmath, puedes ver las imágenes abajo:

El código del ejemplo anterior puedes encontrarlo aquí:

https://drive.google.com/file/d/0B-NM4ghaDXBvQU43czc2a2NPcTg/view?usp=sharing

Encontré información útil en esta página:

http://www.programarya.com/Cursos/C++/Bibliotecas-o-Librerias/

Aquí puedes encontrar información de algunas de las librerías que más utilizo:

http://www.cplusplus.com/reference/cmath/

http://www.cplusplus.com/reference/string/string/

http://www.cplusplus.com/reference/vector/vector/

Espero te haya servido para entender más sobre librerías. ¡Bonito día! 馃檪

Importing and using C++ libraries


Importing and using C++ libraries

Importing and using C++ libraries

Libraries are very important in the use of C++ language, they let you use the functions you need for each program.
You need to call the library at the beggining of the code, I added this example because I needed several libraries on this program.
You can call the library that you need by typing “#include” and then the name of the library between “”. The example is very clear.

#Mastery13 #TC1014 #LaNieveDeColimaExploto #PenguinLove #video

Importacion y uso de modulos en python

Espero y les guste Suscribanse 馃檪

http://youtu.be/xPuNnSVUHR8?hd=1

Creating and using a Python module

                                                                                                                       @PablO_CVi

For creating a module you have to create a function, save the function in pithons location and import the module before calling the function in the future, as you can see in my video.

 

Importing and using Python modules

                                                                                                                       @PablO_CVi

Modules helps the programmer and makes easy to make some operations, because modules has some functions ready to be used, before call this functions, you have to import the module. Here is the link where you can find allt he modules that pyhton has: https://docs.python.org/3/py-modindex.html

 

Mastery 13

Hello people:

For mastery 13 I created another PDF tutorial that explains the basics of libraries in c++. Since there are so many different headers, I also included a link to a web page that shows all the libraries c++ contains. I hope you find it useful.

https://drive.google.com/file/d/0B5CZIHLkZcDzRmdldXFZR1ZzOXc/view?usp=sharing

Learn To Program 2015-04-29 18:23:00

Mastery13

Los modulos existentes en Python  facilitan la programaci贸n dentro del mismo pues son archivos que se importan y ejecutan desde un programa principal. En caso de no existir estos programas tan potentes para cualquier lenguaje de programaci贸n, se tendr铆an que hacer funciones que presisamente realizen las operaciones correspondientes, pero al tratarse de secciones de codigo especiales, su programaci贸n no es tan sencilla, se requerir铆a de una gran habilidad de programaci贸n. Los modulos nos facilitan la programaci贸n. Gracias Modulos.

Mis referencias son los modulos random y winsound respectivamente.
https://docs.python.org/3.4/library/random.html
https://docs.python.org/2/library/winsound.html

**********************
Programa hecho en Python:
**********************
https://github.com/A01630323/Learn-To-Program/blob/master/Mastery13.py

Learn To Program 2015-04-29 18:23:00

Mastery13

Los modulos existentes en Python  facilitan la programaci贸n dentro del mismo pues son archivos que se importan y ejecutan desde un programa principal. En caso de no existir estos programas tan potentes para cualquier lenguaje de programaci贸n, se tendr铆an que hacer funciones que presisamente realizen las operaciones correspondientes, pero al tratarse de secciones de codigo especiales, su programaci贸n no es tan sencilla, se requerir铆a de una gran habilidad de programaci贸n. Los modulos nos facilitan la programaci贸n. Gracias Modulos.

Mis referencias son los modulos random y winsound respectivamente.
https://docs.python.org/3.4/library/random.html
https://docs.python.org/2/library/winsound.html

**********************
Programa hecho en Python:
**********************
https://github.com/A01630323/Learn-To-Program/blob/master/Mastery13.py