Código
Enviado por chuyf17 • 13 de Septiembre de 2015 • Tarea • 557 Palabras (3 Páginas) • 166 Visitas
#include <iostream>
using namespace std;
class huesped
{
private:
int numero_noches;
int tipo_habitacion;
float costo;
public:
void calculaprecio (int x, int y){
numero_noches = x;
switch(y){
case 1: y=520;
break;
case 2: y=620;
break;
case 3: y=720;
break;
default:
cout<<" no aceptado"<<endl;
};
tipo_habitacion = y;
costo=noches*tipo_habitacion;
}
void Imprime()
{
cout<<"Costo por "<<noches<<" las noches son de $"<<Costo;
}
};
int x,y;
int main()
{
cout<<"dias de hospedaje: "<<endl;
cin>> x;
cout<<"elige la habitacion\n 1.-sencilla \n 2.-doble \n 3.-triple"<<endl;
cin>> y;
huesped Q1;
Q1.calculaprecio(x,y);
Q2.imprime();
system("pause");
return 0; }
...