Contenido del Curso
Introducción a C++
Introducción a C++
El Primer Programa
El primer programa tradicional en cualquier lenguaje de programación suele ser un simple programa que envía el mensaje a la consola.
Input and Output
The most common way to output information to the console is by using iostream library. It is stands for input/output stream.
As we already know, to add library to our program we have to include it.
Character output
The cout
stream is part of the iostream library and is used for standard output.
std::
: it means that the identifier is part of the standard library, which is organized under the std namespace.cout
: stands for character output and is used to send output.<<
: it is used to insert data into the standard output stream.
Salida de caracteres
El flujo cout
es parte de la librería iostream y se utiliza para la salida estándar.
Tarea
Create a program that outputs your message.
¡Gracias por tus comentarios!
El Primer Programa
El primer programa tradicional en cualquier lenguaje de programación suele ser un simple programa que envía el mensaje a la consola.
Input and Output
The most common way to output information to the console is by using iostream library. It is stands for input/output stream.
As we already know, to add library to our program we have to include it.
Character output
The cout
stream is part of the iostream library and is used for standard output.
std::
: it means that the identifier is part of the standard library, which is organized under the std namespace.cout
: stands for character output and is used to send output.<<
: it is used to insert data into the standard output stream.
Salida de caracteres
El flujo cout
es parte de la librería iostream y se utiliza para la salida estándar.
Tarea
Create a program that outputs your message.
¡Gracias por tus comentarios!
El Primer Programa
El primer programa tradicional en cualquier lenguaje de programación suele ser un simple programa que envía el mensaje a la consola.
Input and Output
The most common way to output information to the console is by using iostream library. It is stands for input/output stream.
As we already know, to add library to our program we have to include it.
Character output
The cout
stream is part of the iostream library and is used for standard output.
std::
: it means that the identifier is part of the standard library, which is organized under the std namespace.cout
: stands for character output and is used to send output.<<
: it is used to insert data into the standard output stream.
Salida de caracteres
El flujo cout
es parte de la librería iostream y se utiliza para la salida estándar.
Tarea
Create a program that outputs your message.
¡Gracias por tus comentarios!
El primer programa tradicional en cualquier lenguaje de programación suele ser un simple programa que envía el mensaje a la consola.
Input and Output
The most common way to output information to the console is by using iostream library. It is stands for input/output stream.
As we already know, to add library to our program we have to include it.
Character output
The cout
stream is part of the iostream library and is used for standard output.
std::
: it means that the identifier is part of the standard library, which is organized under the std namespace.cout
: stands for character output and is used to send output.<<
: it is used to insert data into the standard output stream.
Salida de caracteres
El flujo cout
es parte de la librería iostream y se utiliza para la salida estándar.
Tarea
Create a program that outputs your message.