Skip to main content

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.

Juan Abdiel


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)

Juan Abdiel

WSQ15

1 min read

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.  

Juan Abdiel

Maximo Comun Divisor

1 min read

"El máximo común divisor (m.c.d. o mcd) de dos o más números es el mayor número que divide a todos exactamente.

 

Cálculo del máximo común divisor

1 Se descomponen los números en factores primos.

2 Se toman los factores comunes con menor exponente.

3 Se multiplican dichos factores y el resultado obtenido es el mcd."(Vitutor)

Este es el proceso para poder obtener el maximo comun divisor, pero ¿como se puede hacer esto en una computadora? Pues con una funcion especifica que pueda ser esto, y aqui esta mi ejemplo:https://github.com/A01229754/Tc107/blob/master/wsq12.cpp

#WSQ12

Pagina donde puedes ver mas informacion acerca del maximo comun divisor: http://www.vitutor.com/di/di/a_7.html

Juan Abdiel

Arrays/Vectores

1 min read

"En programación, una matriz o vector (llamado en inglés array) es una zona de almacenamiento continuo, que contiene una serie de elementos del mismo tipo, los elementos de la matriz. Desde el punto de vista lógico una matriz se puede ver como un conjunto de elementos ordenados en fila (o filas y columnas si tuviera dos dimensiones)." Esta es una definicion de lo que serian vectores, aqui esta mi codigo para poder ver un ejemplo de esto....lo unico es que mi programa esta delimitado a solo poder aceptar 90 valores: https://github.com/A01229754/Tc107/blob/master/wsq10.cpp

La informacion donde saque la definicion: http://es.wikipedia.org/wiki/Vector_(inform%C3%A1tica)

Juan Abdiel

Factoriales

1 min read

El factorial es un proceso en el cual se comienza desde el 1 hasta el numero deseado multiplicando cada uno. Por ejemplo el factrorial de 4 seria: 1x2x3x4=24. Con este programa se puede calcular el numero factorial de un numero, se constituye de ciclos while y tambien condicionales con if/else. Aqui esta el codigo de mi programa como ejemplo: https://github.com/A01229754/Tc107/blob/master/wsq09.cpp #WSQ09

Juan Abdiel

On to Functions

1 min read

This is the same program as the , but in this time I use a funtion to do the mathematical operation in place that direcctly the operations....so here is the code with comments: https://github.com/A01229754/Tc107/blob/master/wsq08.cpp

Juan Abdiel

Pick a number

1 min read

This is a program for a little game who the machine pick a random number and you need to try to get that number, but the program acount yours attemps. So if you want to get distrac and play in your free time here is the main code: https://github.com/A01229754/Tc107/blob/master/justfun.cpp

Juan Abdiel

Sum in the middle of 2 numbers.

1 min read

This a program to find the sum betwen 2 numbers, no of 2 intiger numbers. So if you want to see my code you can see it: https://github.com/A01229754/Tc107/blob/master/sumnum.cpp

Juan Abdiel

Farenheit to Celsius

1 min read

This is a program to convert Farenheit temperatures to Celsius with a littly message to tell you the state of the water. My main code is here and is comment to know what I do: https://github.com/A01229754/Tc107/blob/master/wsq05.cpp

Juan Abdiel

Fun with numbers

1 min read

For the first program...well the second program is this little program to sum, difference, product, integer division and the reaminder of 2 numbers that is give by  the user. My program is this, so you can see this for give you an idea: https://github.com/A01229754/Tc107/blob/master/wsq03.cpp