Odpowiedź :
#include <iostream>
using namespace std;
float cena(float f)
{
return f * 2.2 * 4.53;
}
int main()
{
float euro;
cout << "Podaj cene w euro za 1 lb: "; cin >> euro;
cout << "Cena w pln za 1 kg: " << cena(euro);
return 0;
}

#include <iostream>
using namespace std;
float cena(float f)
{
return f * 2.2 * 4.53;
}
int main()
{
float euro;
cout << "Podaj cene w euro za 1 lb: "; cin >> euro;
cout << "Cena w pln za 1 kg: " << cena(euro);
return 0;
}