const n=5; var a:array[1..n,1..n] of integer; x:array[1..n] of double; i,j,k:byte; begin Randomize; Writeln('*** Исходный массив ***'); for i:=1 to n do begin for j:=1 to n do begin a[i,j]:=Random(51)-25; Write(a[i,j]:4) end; Writeln end; Writeln('*** Массив x ***'); for j:=1 to n do begin x[j]:=0; k:=0; for i:=1 to n do if a[i,j] mod 2=0 then begin x[j]:=x[j]+a[i,j]; Inc(k) end; if k>0 then x[j]:=x[j]/k; Write(x[j]:0:5,' ') end; Writeln end.
const
n=5;
var
a:array[1..n,1..n] of integer;
x:array[1..n] of double;
i,j,k:byte;
begin
Randomize;
Writeln('*** Исходный массив ***');
for i:=1 to n do begin
for j:=1 to n do begin
a[i,j]:=Random(51)-25;
Write(a[i,j]:4)
end;
Writeln
end;
Writeln('*** Массив x ***');
for j:=1 to n do begin
x[j]:=0; k:=0;
for i:=1 to n do
if a[i,j] mod 2=0 then begin
x[j]:=x[j]+a[i,j]; Inc(k)
end;
if k>0 then x[j]:=x[j]/k;
Write(x[j]:0:5,' ')
end;
Writeln
end.
Тестовое решение:
*** Исходный массив ***
-10 18 -8 -15 5
-21 -18 6 -2 9
-7 22 -4 3 14
21 16 -10 -18 -9
17 3 -14 -18 12
*** Массив x ***
-10.00000 9.50000 -6.00000 -12.66667 13.00000
#include <iostream>
#include <math.h> // for sqrt() function
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
int a, b, c;
double D;
cout << "Введите a, b, c (ax^2 + bx + c = 0) : ";
cin >> a >> b >> c;
D = b*b - 4*a*c;
if(D < 0){
cout << "\nДискриминант меньше нуля, действительных корней нет!";
return 0;
}
else if(D == 0){
cout << "\nДискриминант равен нулю, x0 = " << -(b/2*a);
return 0;
}
else if(D > 0){
cout << "Дискриминант больше нуля, x1 = " <<
(-b + sqrt(D))/(2*a) << ", x2 = " <<
(-b - sqrt(D))/(2*a);
}
return 0;
}
ПроверкаВведите a, b, c (ax^2 + bx + c = 0) : 2 4 7
Дискриминант меньше нуля, действительных корней нет!
Введите a, b, c (ax^2 + bx + c = 0) : 1 6 9
Дискриминант равен нулю, x0 = -3
Введите a, b, c (ax^2 + bx + c = 0) : 2 4 -7
Дискриминант больше нуля, x1 = 1.12132, x2 = -3.12132