Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/feed-rss2.php on line 8
‘#Mastery15’ Articles at Courses by Ken https://kenscourses.com/tc101winter2015 Facilitator of Learning Experiences Thu, 26 Nov 2015 05:09:28 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #Mastery15 #Mastery16 y #Mastery18 #TC1017 https://kenscourses.com/tc101winter2015/2015/mastery15-mastery16-y-mastery18-tc1017/ Thu, 26 Nov 2015 05:09:28 +0000 https://eduardotorresb.withknown.com/2015/mastery15-mastery16-y-mastery18 Continue reading ]]>

Link

y

]]>
https://creativecommons.org/licenses/by/4.0/
If and Else https://kenscourses.com/tc101winter2015/2015/if-and-else-2/ Thu, 07 May 2015 04:37:45 +0000 https://programadventure.withknown.com/2015/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

Continue reading ]]>

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

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery15 https://kenscourses.com/tc101winter2015/2015/mastery15-21/ Thu, 07 May 2015 04:32:53 +0000 https://jerles.withknown.com/2015/mastery15

Use of the conditional “if”

15 1014

Continue reading ]]>

Use of the conditional “if”

15 1014

]]>
https://creativecommons.org/licenses/by/4.0/
#TC1014 #Mastery15 #Mastery16 https://kenscourses.com/tc101winter2015/2015/tc1014-mastery15-mastery16/ Thu, 07 May 2015 04:19:53 +0000 https://programminglearning.withknown.com/2015/mastery17-mastery18

http://youtu.be/WR7Uwq4cLZk

1014 15 16

Continue reading ]]>

http://youtu.be/WR7Uwq4cLZk

1014 15 16

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery15 https://kenscourses.com/tc101winter2015/2015/mastery15-20/ Thu, 07 May 2015 02:34:05 +0000 https://juancaglez.withknown.com/2015/mastery15-1

1017 15

Hello i am doing my 15 al over again because i want to get my two points!

I will be teaching you how to use a conditional if.

First of all lets see why conditionals are useful.

For me personally, the use of conditionals is  one of the most important things in c++ programming or in any kind of language or algorithm. Because is such an easy way  to do things, or to lead the user where he wants to go.

An if or conditional, is to give the user an option if he wants something or no, or also if the user put something he can´t the program will say no, because you said tha IF he put that it will say no.

But, lets do an example for you to understand it better.

the syntax for using an if is very easy:

"if (conditional)

{

}"

Yes, is that simple.

But let say you ask the user for a number between 1 and  10 and the name of the variable that the user will give us is "num".

if (num 10) //This is the condition

{

     cout

}

So what did i did here. In words this tell "If the number the user gives is less than 1 or more than 10, then print (Your number is invalid).

As you can se is very simple and you cant put various times or combine it with for loops, while loops or whatever you want.

Hope you learn from this!

Continue reading ]]>

1017 15

Hello i am doing my 15 al over again because i want to get my two points!

I will be teaching you how to use a conditional if.

First of all lets see why conditionals are useful.

For me personally, the use of conditionals is  one of the most important things in c++ programming or in any kind of language or algorithm. Because is such an easy way  to do things, or to lead the user where he wants to go.

An if or conditional, is to give the user an option if he wants something or no, or also if the user put something he can´t the program will say no, because you said tha IF he put that it will say no.

But, lets do an example for you to understand it better.

the syntax for using an if is very easy:

“if (conditional)

{

}”

Yes, is that simple.

But let say you ask the user for a number between 1 and  10 and the name of the variable that the user will give us is “num”.

if (num 10) //This is the condition

{

     cout

}

So what did i did here. In words this tell “If the number the user gives is less than 1 or more than 10, then print (Your number is invalid).

As you can se is very simple and you cant put various times or combine it with for loops, while loops or whatever you want.

Hope you learn from this!

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery15 #TC1017 https://www.youtube.com/watch?v=CBXDq4xlAj0 https://kenscourses.com/tc101winter2015/2015/mastery15-tc1017-httpswww-youtube-comwatchvcbxdq4xlaj0/ Thu, 07 May 2015 00:29:54 +0000 https://auralgo.withknown.com/2015/mastery15-tc1017-watchvcbxdq4xlaj0 Continue reading ]]>

15 1017 https://www.youtube.com/watch?v=CBXDq4xlAj0

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 15 https://kenscourses.com/tc101winter2015/2015/mastery-15-9/ Tue, 05 May 2015 22:19:17 +0000 https://adxconex.withknown.com/2015/mastery-15

Las sentencias de decisión o también llamadas de CONTROL DE FLUJO son estructuras de control que realizan una pregunta la cual retorna verdadero o falso (evalúa una condicion) y selecciona la siguiente instrucción a ejecutar dependiendo la respuesta o resultado.

¿como se usa un if?

un if sigue el siguiente codigo

#f9f9f9;">if (condicion)
   {
       Set de instrucciones
   }

este codigo utiliza una condicion que va secuenciada con punto y coma

If(Inicial;Condición;Aumento)

15 1017

Continue reading ]]>

Las sentencias de decisión o también llamadas de CONTROL DE FLUJO son estructuras de control que realizan una pregunta la cual retorna verdadero o falso (evalúa una condicion) y selecciona la siguiente instrucción a ejecutar dependiendo la respuesta o resultado.

¿como se usa un if?

un if sigue el siguiente codigo

este codigo utiliza una condicion que va secuenciada con punto y coma

If(Inicial;Condición;Aumento)

15 1017

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery15 #TC1014 #LaNieveDeColimaExploto #PenguinLove #video https://kenscourses.com/tc101winter2015/2015/mastery15-tc1014-lanievedecolimaexploto-penguinlove-video/ Mon, 27 Apr 2015 21:32:21 +0000 https://gerahuerta.withknown.com/2015/mastery15-tc1014-lanievedecolimaexploto-penguinlove-video Continue reading ]]>

Uso del condicional if 

Suscribanse y denle like 

http://youtu.be/i8ZU-Lfct6U?hd=1

]]>
https://creativecommons.org/licenses/by/4.0/
H0yos Adventures 2015-04-07 23:35:15 https://kenscourses.com/tc101winter2015/2015/h0yos-adventures-2015-04-07-233515/ Wed, 08 Apr 2015 04:35:15 +0000 https://hoyos.withknown.com/2015/mastery-15-16 Continue reading ]]>

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

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery15 https://kenscourses.com/tc101winter2015/2015/mastery15-18/ Tue, 07 Apr 2015 00:10:06 +0000 https://monse31.withknown.com/2015/mastery15 Continue reading ]]>

https://www.dropbox.com/s/cw10tpbestl4z7k/mastery15.mp4?dl=0

https://github.com/Xochitl96/WSQ/blob/master/MAstery15.cpp

]]>
https://creativecommons.org/licenses/by/4.0/