Author Archives: luis armando

Mastery23

 hi, here is some help for vectors, just some basic things. 

code:

https://github.com/Hoyos1148/Mastery23/blob/master/vectors

video

https://www.youtube.com/watch?v=tkBe_zmE6WU

Mastery 10

 here is an example of some basic output and input

here is the link for an example code

https://github.com/Hoyos1148/mastery-10/blob/master/cin%20cout

here is the link for the video

https://www.youtube.com/watch?v=DH-L5JPDKkw

H0yos Adventures 2015-04-08 00:06:24

here is the link for the code of recursion example

https://github.com/Hoyos1148/Mastery-21-22/blob/master/recursion

here is the link for the video

https://www.youtube.com/watch?v=VjGRJaC3R80

H0yos Adventures 2015-04-07 23:35:15

hi there, on this video i´m going to be explaining  the conditionals if and else. hope its useful and enjoy it.

here is the link for an example code in github:

https://github.com/Hoyos1148/MAstery-15-16/blob/master/condicionales%20if%20y%20else

here is the link for the video:

https://www.youtube.com/watch?v=Tv9dJtWXzYY

Mastery07

use of comments in c++

here is the link for an example code:

https://github.com/Hoyos1148/Mastery07/blob/master/comments

here is the link for the video:

https://www.youtube.com/watch?v=3_D80j5i_UM

Mastery 20

hi there, this is my second video, again is a simple code explaining how does it work a for loop

here is the link for the code in github:

https://github.com/Hoyos1148/Mastery20/blob/master/ciclos%20for

the link for the video tutorial:

https://www.youtube.com/watch?v=fFIpZU8v33s

H0yos Adventures 2015-04-07 22:22:56

hi there i made my first video about calling and creating functions. its a really easy code but it explains how to create a function and calling it in the  main function,  

 

here is the link for the video tutorial: 

https://www.youtube.com/watch?v=SEX0X8RxJ9Y

here is the link for the code in git hub 

https://github.com/Hoyos1148/Mastery-11-12/blob/master/creating%20%26%20calling%20functions

Mastery19 Use of loops with “while

using a do{}while is simple. the function of this is repeating whatever is inside the “do{—-}whiile”  WHILE the condition inside the “while” turns false. example: 

       cin>>num1;

do

{

sum = sum + 1;

num2 = sum + num2;

}while(sum<num1);

is going to repeat whatever is inside the do{}while (LOOP) while the condition presented inside the parenthesis is true

WSQ08

this code does the same as the WSQ03 but in a different way. were are making a function for each part and then calling it again in the cout for the answer. take a look at the the picture and see the different functions for each operation.

WSQ06

this code is a little bit different because now we use two more libraries for being able to create a random number. this random number is unkown by the user and he will try to guess it. there is a range between 1-100