// Yousef Rabah        Oct. 16th                 Drawer 1602

#include "CS35lib.h"

void get_personal_data(int& age, double& shoe_size)
{
	cout<<"Please enter your age: ";
	cin>>age;
	cout<<"Please enter your shoe_size: ";
	cin>>shoe_size;
	return;
} 

void main ()
{
	int age;
	double shoe_size, product;
	
	cout<<"Welcome to Custom Air. We personalize your ticket price.\n";
	
	get_personal_data(age, shoe_size);
	
	product = age*shoe_size;
	
	set_decimal(2);
	cout<<"Your plane ticket to Europe will cost $"<<product<<endl;
	
	return 0;
}
/*
Run

[rabahyo@quark CS35]$ ./a.out
Welcome to Custom Air. We personalize your ticket price.
Please enter your age: 12
Please enter your shoe_size: 0.5
Your plane ticket to Europe will cost $6.00
*/


