Есть код: #include
#include
using namespace std;
int main()
{
float a, b, h, x, y, n;
cout << "a=";
cin >> a;
cout << "b=";
cin >> b;
cout << "h=";
cin >> h;
if (b (b - a) || h == 0) cout << "Ne sysh.";
else
{
n = (b - a) / h;
for (int i = 0; i <= n; i++)
{
x = a + i * h;
y = pow(x, (1.0 / 7.0));
cout << "x=" << x << " ";
cout << "y=" << y << endl;
}
}
return 0;
}
1)Значение x и y занести в массивы.
2)Найти наибольшее и наименьшее значение в массиве y. Вывести их и
соответствующие им значения из массива x в следующем виде:
yMin = ... при x = ...
yMax = ... при x = ...
3)Вычислить сумму и среднее арифметическое значение элементов массива y.
Результаты вывести на экран.
b: array[1..10] of real;
i,n: integer;
s: real;
begin
s:=0; n:=0;
write('массив a: ');
for i:=1 to 10 do
begin
read(a[i]);
if a[i]<0 then
begin
s:=s+a[i];
n:=n+1;
end;
write(a[i],' ');
end;
s:=s/n;
writeln;
writeln('среднее арифметическое отрицательных: ',s);
writeln('количество отрицательных: ',n);
write('массив b: ');
for i:=1 to 10 do
begin
if a[i]<0 then b[i]:=s
else b[i]:=a[i];
write(b[i]:7:3);
end;
end.
массив a: 2 2 -3 1 -5 -6 -5 9 -7 5
среднее арифметическое отрицательных: -5.2
количество отрицательных: 5
массив b: 2.000 2.000 -5.200 1.000 -5.200 -5.200 -5.200 9.000 -5.200 5.000
var steps := 12; // За кол-во ходов
var Xend := 6; // В точку с координатой X
var Yend := 4; // ... и Y
var vars := 0; procedure Find(step, X, Y : Integer);
begin
if step = 0 then
vars += (X = Xend) and (Y = Yend) ? 1 : 0
else
begin
Find(step - 1, X + 1, Y );
Find(step - 1, X - 1, Y );
Find(step - 1, X , Y + 1);
Find(step - 1, X , Y - 1);
end;
end;
begin
Find(steps, 0, 0);
Print(vars);
end.