Odpowiedź :
c++
#include <iostream>
float plus_tax(int x, float y)
{
return 120+(x * (y* 0.01));
}
using namespace std;
int main()
{
cout <<plus_tax(120,20);
}
c++
#include <iostream>
float plus_tax(int x, float y)
{
return 120+(x * (y* 0.01));
}
using namespace std;
int main()
{
cout <<plus_tax(120,20);
}