GRUPO12-SENTENCIA SWITCH

SENTENCIA IF-MACAS GRUPO 12

INTERCAMBIO DE VALORES

 /* Escriba un fragmento de programa que intercambie los valores de dos 

variables.*/


#include<iostream>


using namespace std;


int main(){

int x,y, aux;

cout<<"Digite el valor de x: "; cin>>x;

cout<<"Digite el valor de y: "; cin>>y;

aux = x;

x = y;

y = aux;

cout<<"\nEl nuevo valor de x es: "<<x<<endl;

cout<<"El nuevo valor de y es: "<<y<<endl;

return 0;

}

Comentarios

EJEMPLOS DE PROGRAMACION EN C++

3.- REALICE UN PROGRAMA EN C++ QUE SIMULE UN CAJERO AUTOMÁTICO, (RECUERDE QUE SOLO PODRÁ INGRESAR 3 VECES LA CLAVE) Y MUESTRE Y EJECUTE LAS OPCIONES DEPÓSITO, RETIRO , SALDO, SALIR.

4.- REALICE UN PROGRAMA EN C++ QUE REALICE UNA COMPRA Y EJECUTE LOS DESCUENTOS RESPECTIVOS, AL FINALIZAR MUESTRE EL RESULTADO DE CADA DESCUENTO