|
|
От: | navy | |
| Дата: | 27.12.06 12:48 | ||
| Оценка: | |||
float test(const float&x, const float& y)
{
if (x == 0)
{
return pow(y, 5) - y;
}
else if (y == 0)
{
return pow(x, 2);
}
return pow(test(x - 1, y), 4) - pow(test(x, y-1), 3);
}