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
‘#Mastery10’ Articles at Courses by Ken https://kenscourses.com/tc101winter2015 Facilitator of Learning Experiences Thu, 07 May 2015 03:48:05 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #TC1014 #Mastery10 #Mastery28 https://kenscourses.com/tc101winter2015/2015/tc1014-mastery10-mastery28/ Thu, 07 May 2015 03:48:05 +0000 https://programminglearning.withknown.com/2015/mastery1-mastery2-1

https://youtu.be/1ajPd1zMaA4

1014 10 28

Continue reading ]]>

https://youtu.be/1ajPd1zMaA4

1014 10 28

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery10 Courses with Ken https://kenscourses.com/tc101winter2015/2015/mastery10-courses-with-ken-2/ Thu, 07 May 2015 03:40:41 +0000 http://lcnajerao.wordpress.com/?p=90 Continue reading ]]> enjoy the video!

http://youtu.be/53xMH78HHZg

#Mastery10 Courses with Ken

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery10 Courses with Ken https://kenscourses.com/tc101winter2015/2015/mastery10-courses-with-ken/ Thu, 07 May 2015 03:40:41 +0000 http://lcnajerao.wordpress.com/?p=90 Continue reading ]]> enjoy the video!

http://youtu.be/53xMH78HHZg

#Mastery10 Courses with Ken

]]>
https://creativecommons.org/licenses/by/4.0/
Output e Input https://kenscourses.com/tc101winter2015/2015/output-e-input/ Thu, 07 May 2015 03:38:16 +0000 https://programadventure.withknown.com/2015/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

Continue reading ]]>

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

]]>
https://creativecommons.org/licenses/by/4.0/
Input and output in C++ https://kenscourses.com/tc101winter2015/2015/input-and-output-in-c/ Thu, 07 May 2015 02:18:55 +0000 https://chavirul.withknown.com/2015/input-and-output-in-c Continue reading ]]>

Now this video is for 10 I have a post of this already, but as always a video is a better learning tool for some people.

Here’s the link =)

https://www.youtube.com/watch?v=2GfPiUfCGnQ

1017

]]>
https://creativecommons.org/licenses/by/4.0/
#mastery10 https://kenscourses.com/tc101winter2015/2015/mastery10-19/ Wed, 06 May 2015 23:12:25 +0000 https://juancaglez.withknown.com/2015/mastery10-1

10 10

Here i will explain you how to do basic output and input text based in C++.

To output something is really simple. in every output you always will have to put "

An example to output text you will put upper commas:

cout

An example to output a function you will do this:

cout

If you want to put some text and a function is:

cout

If you want to put end the line after whatever you print put this.

cout

Here is everything together:

cout

--------------------------------------------------------------------------------------------------------------------------------------------

To input something the first thing you want to do is to declare the variable were you want to save the input.

If is an int variable just put   int n1;

If is a string  name; (You will have to include the string library)

If is a boolean  bool n1;

And etc.

After you now this the syntax to an input is:

cin >> ;

Let´s say you will save a number which is variable is n1.

cin >> n1;

 

That is basically everything to know about input and output in c++.

Hope you understand so i can  get my 2 points!

 

 

Continue reading ]]>

10 10

Here i will explain you how to do basic output and input text based in C++.

To output something is really simple. in every output you always will have to put ”

An example to output text you will put upper commas:

cout

An example to output a function you will do this:

cout

If you want to put some text and a function is:

cout

If you want to put end the line after whatever you print put this.

cout

Here is everything together:

cout

——————————————————————————————————————————————–

To input something the first thing you want to do is to declare the variable were you want to save the input.

If is an int variable just put   int n1;

If is a string  name; (You will have to include the string library)

If is a boolean  bool n1;

And etc.

After you now this the syntax to an input is:

cin >> ;

Let´s say you will save a number which is variable is n1.

cin >> n1;

 

That is basically everything to know about input and output in c++.

Hope you understand so i can  get my 2 points!

 

 

]]>
https://creativecommons.org/licenses/by/4.0/
Basic output (printing) and input (text based) in C++ – Mastery10 https://kenscourses.com/tc101winter2015/2015/basic-output-printing-and-input-text-based-in-c-mastery10/ Tue, 05 May 2015 23:28:53 +0000 https://oswaldouliel.withknown.com/2015/basic-output-printing-and-input-text-based-in-c--

Output e Input en c++ 

El output esta compuesto por la siguiente formula: 

cout el texto que deseamos imprimir "  endl;

Este ejemplo lo podemos notar en la imagen de arriba. 
Al correr el programa imprime el texto entre los parentesis.

Debemos tener en cuenta que el texto siempre va entre comillas y al final del endl debemos poner punto y coma.

 

Para realizar el input debemos crar variables donde se guarde el valor entrante. Podemos resumirlo con la siguiente formula:

int (nombre de la variable);

cin >> (nombre de la variable); 

 Como podemos observarlo en la imagen superior.

 

1017 10

Continue reading ]]>

Output e Input en c++ 

El output esta compuesto por la siguiente formula: 

cout el texto que deseamos imprimir ”  endl;

Este ejemplo lo podemos notar en la imagen de arriba. 
Al correr el programa imprime el texto entre los parentesis.

Debemos tener en cuenta que el texto siempre va entre comillas y al final del endl debemos poner punto y coma.

 

Para realizar el input debemos crar variables donde se guarde el valor entrante. Podemos resumirlo con la siguiente formula:

int (nombre de la variable);

cin >> (nombre de la variable); 

 Como podemos observarlo en la imagen superior.

 

1017 10

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 10 https://kenscourses.com/tc101winter2015/2015/mastery-10-8/ Tue, 05 May 2015 23:09:55 +0000 https://adxconex.withknown.com/2015/mastery-10 Continue reading ]]>

Uso de output e input en c++

primeramente explicare el uso de las output que para mi son las mas faciles ya que no se necesitan a fuerza variables.

el output esta principalmente compuesto por el cout, lo que quieres imprimir y el endl.

Los outputs se ingresan con el comando “cout” seguido de los simbolos

Los inputs se ingresan con el comando “cin” seguido de los simbolos >> lo cual significa datos de entrada al programa.

10 1017

]]>
https://creativecommons.org/licenses/by/4.0/
Living a new life 2015-05-04 02:12:04 https://kenscourses.com/tc101winter2015/2015/living-a-new-life-2015-05-04-021204/ Mon, 04 May 2015 07:12:04 +0000 https://auralgo.withknown.com/2015/video-for-mastery10-basic-output-and-input-watchvra937sfc_-gfeatureyoutubehd1 Continue reading ]]>

Video for Basic output and input https://www.youtube.com/watch?v=ra937sfc_-g&feature=youtu.be&hd=1

]]>
https://creativecommons.org/licenses/by/4.0/
Basic output (print) in Python https://kenscourses.com/tc101winter2015/2015/basic-output-print-in-python-6/ Thu, 09 Apr 2015 17:07:13 +0000 https://jorgepadilla95.withknown.com/2015/basic-output-print-in-python Continue reading ]]>

I made a very basic program in Python that prints a string and a number.

“Print” is the most basic functions in phyton and is used to show anything you want in the console. For using it, it has some rules that must be followed, for example,after print always goes a parenthesis(), inside can bet integers, strings, and also text but the text has to be inside quotation marks “” for example: 

 

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