#include <iostream>
usingnamespace std;
int main()
{
//1 Euro = 1.3786 U.S. dollars
//1 Euro = 141.047678 Japanese yen
int chosenPROGRAM;
int ETD=1,ETY=2;
int euro;
float Dollars=1.3786,YEN=141.047678;
cout<<"Choose which currency calculator you want to pick(enter the chosen number):"<<endl;
cout<<"1. Euro to Dollars"<<endl<<"2. Euro to Yen"<<endl;
cin>>chosenPROGRAM;
if(chosenPROGRAM == ETD) {
cout<<"Write the number in euros to transfer it to dollars"<<endl;
cin>>euro;
cout<<euro<<"e in dollars is "<<euro*Dollars<<endl;
}elseif (chosenPROGRAM == ETY) {
cout<<"Write the number in euros to transform it to YEN"<<endl;
cin>>euro;
cout<<euro<<"e in YEN is "<<euro*YEN<<endl;
}
cin.get();
return 0;
}