Taller #5 en C++
Taller #5 en C++
Taller #5 en C++
GRUPO: 4IE701
#include <iostream>
using namespace std;
int main ()
{
int val_1 , val_2 , suma; //SE DEFINEN LAS VARIABLES
cout << "\t\tESTE PROGRAMA REALIZARA UNA SUMA DE DOS VALORES INTRODUCIDOS\n\
n";
//SE PREGUNTA POR EL PRIMER VALOR
cout << " Para Empezar, Introduzca el Primer Valor ";
cin >> val_1;
// SE PREGUNTA POR EL SEGUNDO VALOR
cout << "\n\n Introduzca su Segundo Valor: ";
cin >> val_2;
// SE REALIZA LA OPERACION
suma = val_1 + val_2;
cout << "\n\n\tEL RESULTADO DE LA SUMA ES: " << suma; // MUESTRA EL MENSAJE
DEL RESULTADO
return 0;
}
-----------------------------------------------------------------------------------
--
PROGRAMA #2: LEER NOMBRE COMPLETO
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
string nombre; //SE DEFINE LA VARIABLE
cout << "Podria Introducir su Nombre Completo: "; //SE PREGUNTA POR EL NOMBRE
getline(cin, nombre);
cout << "\n\nBuenos Dias, " << nombre << ", gracias por usar esta
aplicacion."; //SE IMPRIME EL MENSAJE
return 0;
}
-----------------------------------------------------------------------------------
------------
PROGRAMA #3: MAYOR O MENOR DE EDAD
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
int edad=0;
string nombre;
cout << "\t\tCON ESTE PROGRAMA PODRA SABER SI ES MAYOR O MENOR DE EDAD.";
cout << "\n\n INTRODUCE TU NOMBRE COMPLETO: "; //SE PIDE NOMBRE DEL USUARIO
getline (cin, nombre);
cout << "\n\n Muy Bien "<< nombre<< ", Ahora Podrias Introducir tu Edad: ";
cin >> edad; //LUEGO SE PIDE EDAD DEL USUARIO
cout << "\n\n\tBuenos Dias "<< nombre <<", eres mayor de edad."; //SE
IMPRIME EL MENSAJE
}
else
{
if (edad < 18) //PARA CUANDO ES MENOR
{
cout << "\n\n\tBuenos Dias "<<nombre << ", eres menor de
edad."; //SE IMPRIME EL MENSAJE
}
}
return 0;
}
-----------------------------------------------------------------------------------
---------------------------
PROBLEMA #4: USANDO DO_WHILE
/*CON ESTE PROGRAMA USANDO EL do_while
SE PODRA REALIZAR LA SUMA DE 6 VALORES LEIDOS POR EL USUARIO
*/
#include <iostream>
using namespace std;
int main()
{
int cantidad=1;
float valores, suma;
do
{
//SE PREGUNTA POR LOS 6 VALORES
cout << "\tTu Valor #"<<cantidad<< ": "; cin >>valores;
cout << endl;
suma = suma + valores;
cantidad ++; //SE COLOCA PARA IR AUMENTANDO LA CANTIDAD DE VECES A
PREGUNTAR
cout << "\n\n\t\tEL RESULTADO DE LA SUMATORIA ES: " << suma <<endl;
cout << "\n\n";
return 0;
}
-----------------------------------------------------------------------------------
----
PROBLEMA #4: USANDO WHILE
#include <iostream>
using namespace std;
int main()
{
int cantidad=1;
float valores, suma;
cout << "\n\n\t\tEL RESULTADO DE LA SUMATORIA ES: " << suma <<endl;
cout << "\n\n";
return 0;
}
-----------------------------------------------------------------------------------
------
PROBLEMA #4: USANDO FOR
#include <iostream>
using namespace std;
int main()
{
int cantidad=1 ;
float valores, suma;
cout << "\n\n\t\tEL RESULTADO DE LA SUMATORIA ES: " << suma <<endl;
cout << "\n\n";
return 0;
}
-------------------------------------------------------------------------------
PROGRAMA #5: FACTORIAL
#include <iostream>
using namespace std;
int main()
{
//SE DEFINEN LAS VARIABLES DE TIPO ENTERO
int valor=0, factor=1;
return 0;
}
-----------------------------------------------------------------------------------
----------