|
|
От: | Aristarh | |
| Дата: | 05.01.07 15:15 | ||
| Оценка: |
|
||
N>float test(const float&x, const float& y)
N>{
N> if (x == 0)
N> {
N> return pow(y, 5) - y;
N> }
N> else if (y == 0)
N> {
N> return pow(x, 2);
N> }
N> return pow(test(x - 1, y), 4) - pow(test(x, y-1), 3);
N>}
N>