here is the code i have so far, basically you have ti enter a price in pounds and it will convert it to euros. i have got the conversion working i am just unsure how to get the euro symbol for the out put. any help would be much appreciated.
#include <iostream>
#include <iomanip>
#include <cassert>
using namespace std;
void displayFinalData(float sumInE, int numOfPrices)
{
cout << ("The total sum is: ", sumInE, "€");
cout << ("The average is: ", sumInE / numOfPrices);
}