Author Archives: Juan Abdiel

While y For

Un tutorial para poder saber como utilizar y las diferencias entre while y for para C++.

Aqui esta el link: https://youtu.be/MA3vzdqZJ-o

1017

19

20

Bonus Point

PROGRAM CLASS

Realmente este tipo de clases las disfruto muchisimo, pero muchisimo a tal grado que era una de las pocas materias donde realmente ponia todo mi esfuerzo y dedicacion…..la clase de Kent no fue la excepcion……excepto por la Flipperd Classroom.

De verdad que me costo muchisimo el poder adaptarme a esa situacion de clase donde la tarea se hace en clases y los libros y lecturas en casa. Si no hay preguntas el profesor asume todo por visto o que y alo sabemos.

1017

#Tc1017 #wsq17 Scilab es una herramienta muy util de alto lenguaje de programacion pero que una vez comienzas a agarrar la onda comienzas a darte cuenta

1017 17
Scilab es una herramienta muy util de alto lenguaje de programacion pero que una vez comienzas a agarrar la onda comienzas a darte cuenta que estas ante una herramienta magnifica.

Aqui hay un link para aquellos que comienzan:http://www.scilab.org/content/download/849/7901/file/Scilab_beginners.pdf

Y para poder descargar entrar a su pagina oficial: https://www.scilab.org/

Pero de verad que recomiendo altamente este programa (excepto a los de Mac, ellos si tienen pedos con esta aplicacion)

WSQ15

HORARIO INFORMATIVO

Esto siempre es bueno, aquello que comienza bien termina bie….o por lo menos eso es lo que se cree. Aqui esta lo que hare de ahora hasta el final del semestre.  1017 15

Proyecto Final

SUDOKU

Aqui esta el codigo principal en github de lo que conllevo hacer todo esto: https://github.com/kenwbauer/EduardoJuan

Pero tambien hay un video para que puedan ver como funciona el juego

Link: https://youtu.be/5y2GwsoUDM8

ASI QUE DISFRUTENLO

1017

If and Else

Aqui esta un nuevo tutorial para poder saber como utilizar un if y tambien un else como condicionales.

Aqui esta el link: https://youtu.be/dvsp4tkc1Ko

1017

15

16

Funciones en C++

Aqui esta un nuevo tutorial para como poder crear una funcion que hago o desarrollo un codigo especifico del programa y despues como poderla llamar y usarla en el codigo principal.

Aqui esta el link:https://www.youtube.com/watch?v=wu68jwiWRQw&feature=youtu.be

1017

11

12

Output e Input

Aqui esta un tutorial para que puedan aprender a usar las funciones basicas de cout y tambien cin. Completamente en español y explicado para Ubuntu.

Aqui esta el link:https://www.youtube.com/watch?v=WtvGQlgbqBA

1017

10

Crear un archivo C++ y compilarlo

En este tutorial podran ver como pueden crear un archivo desde la terminal en Ubuntu y como poderlo compilar.

Aqui esta el link: https://www.youtube.com/watch?v=ntoiq5-wPqA

1

1017

Fundamental Data Type

FUNDAMENTAL DATA TYPE

The values of variables are stored somewhere in an unspecified location in the computer memory as zeros and ones. Our program does not need to know the exact location where a variable is stored; it can simply refer to it by its name. What the program needs to be aware of is the kind of data stored in the variable. It’s not the same to store a simple integer as it is to store a letter or a large floating-point number; even though they are all represented using zeros and ones, they are not interpreted in the same way, and in many cases, they don’t occupy the same amount of memory.


Fundamental data types are basic types implemented directly by the language that represent the basic storage units supported natively by most systems. They can mainly be classified into:

  • Character types: They can represent a single character, such as 'A' or '$'. The most basic type is char, which is a one-byte character. Other types are also provided for wider characters.
  • Numerical integer types: They can store a whole number value, such as 7 or 1024. They exist in a variety of sizes, and can either be signed or unsigned, depending on whether they support negative values or not.
  • Floating-point types: They can represent real values, such as 3.14 or 0.01, with different levels of precision, depending on which of the three floating-point types is used.
  • Boolean type: The boolean type, known in C++ as bool, can only represent one of two states, true or false.


Here is the complete list of fundamental types in C++:

Character types char Exactly one byte in size. At least 8 bits.
char16_t Not smaller than char. At least 16 bits.
char32_t Not smaller than char16_t. At least 32 bits.
wchar_t Can represent the largest supported character set.
Integer types (signed) signed char Same size as char. At least 8 bits.
signed short int Not smaller than char. At least 16 bits.
signed int Not smaller than short. At least 16 bits.
signed long int Not smaller than int. At least 32 bits.
signed long long int Not smaller than long. At least 64 bits.
Integer types (unsigned) unsigned char (same size as their signed counterparts)
unsigned short int
unsigned int
unsigned long int
unsigned long long int
Floating-point types float  
double Precision not less than float
long double Precision not less than double
Boolean type bool  
Void type void no storage
Null pointer decltype(nullptr)  


* The names of certain integer types can be abbreviated without their signed and int components – only the part not in italics is required to identify the type, the part in italics is optional. I.e., signed short int can be abbreviated assigned shortshort int, or simply short; they all identify the same fundamental type.

Recuperado de: http://www.cplusplus.com/doc/tutorial/variables/

 Para aquellos atascados que sólo quieren saber lo que necesitan, hay 5 tipos de datos para las variables. Son string, int, float, long y bool. 

El tipo string es meramente para texto.

El tipo int es intiger que es para números enteros.

El tipo float es un número que admite números con puntos decimales.

El tipo long es para números de gran valor.

El tipo bool es solamente para dar un valor de true o false.

Para funciones hay un valor llamado voit que es para que imprima un valor sin necesidad de poner un cout. Tener mucho cuidado con las funciones a utilizar sobre todo en las funciones.

1017

09