Odpowiedź:
#include <iostream>
#include <iomanip>
using namespace std;
float cena(float f){
f *= 4.47; // cena w złotych
return f/0.40951718; // cena za kilogram
}
int main() {
float cena_euro = 10;
cout<<"1 funt kosztuje "<<cena_euro<<" euro"<<endl;
cout<<"1 kg tego samego produktu kosztuje "<<fixed<<setprecision(2)<<cena(cena_euro)<<" zł."<<endl;
return 0;
}