Un tutorial para poder saber como utilizar y las diferencias entre while y for para C++.
Aqui esta el link: https://
I am a fan of technology and a new in the world of program.
My career is mechatronics , I chose this career because I arrived by accident. But in the end I really liked what comes as it is a combination of mechanics, electronics and programming . And I just like what he does because it is also something that I loved my do. I think that I do the right choose and I dont return or go back.
I tink my hero is Jesus, because this person is the best person. This person have really see for us at the beging of the time, this person who really care of us, this person who give away everithing that he have for us, this person who love us so much that even died for us, this person who give his life for us and love and is waiting for us and still for give us even you dont want to belive in him.
In the past I played the guitar for 3 years, but now no more. And my favourite author is Cassandra Clare with Cazadores de Sombras.
1 min read
Un tutorial para poder saber como utilizar y las diferencias entre while y for para C++.
Aqui esta el link: https://
1 min read
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.
#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 que estas ante una herramienta magnifica.
Aqui hay un link para aquellos que comienzan:http://
Y para poder descargar entrar a su pagina oficial: https://
Pero de verad que recomiendo altamente este programa (excepto a los de Mac, ellos si tienen pedos con esta aplicacion)
1 min read
SUDOKU
Aqui esta el codigo principal en github de lo que conllevo hacer todo esto: https://
Pero tambien hay un video para que puedan ver como funciona el juego
Link: https://
ASI QUE DISFRUTENLO
1 min read
Aqui esta un nuevo tutorial para poder saber como utilizar un if y tambien un else como condicionales.
Aqui esta el link: https://
1 min read
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://
1 min read
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://
1 min read
En este tutorial podran ver como pueden crear un archivo desde la terminal en Ubuntu y como poderlo compilar.
Aqui esta el link: https://
4 min read
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:
'A'
or '$'
. The most basic type is char
, which is a one-byte character. Other types are also provided for wider characters.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.3.14
or 0.01
, with different levels of precision, depending on which of the three floating-point types is used.bool
, can only represent one of two states, true
or false
.
Here is the complete list of fundamental types in C++:
Group | Type names* | Notes on size / precision |
---|---|---|
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 short
, short int
, or simply short
; they all identify the same fundamental type.
Recuperado de: http://
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.