Const n=10; var a:array[1..n] of integer; i:integer; begin writeln('vvedite massiv='); for i := 1 to n do readln(a[i]); for i := 1 to n do if a[i]<0 then writeln('esti') else writeln ('net'); readln; end.
natalyaionova
27.12.2021
#include <iostream> #include <string> #include <ctype.h> using namespace std;
Program kv;Var a,b,c,x1,x2,x,D: Real; BEGIN write ('input a b c =>'); Readln (a,b,c); if a = 0 then if b = 0 then Begin Writeln ('The equation is not compatible'); Readln; Halt End else Begin x :=-c / b; Writeln ('Root x=' ,x:8:2); Readln; Halt End else Begin D :=Sqr (b) - 4 * a * c; if D<0 then Begin Writeln ('The equation has no real roots'); readln; Halt End else Begin x:=-b /( 2 * a ); if D = 0 then Begin Writeln ('Roots are equal x1=x2=', x:8:2); Readln; Halt End; x2:= Sqrt (D)/(2*a); x1:= x2 + x; x2:= x - x2; Writeln('Roots: x1=',x1:8:2, ' x2= ',x2:8:2) EndEnd; Readln;End.
Ответить на вопрос
Поделитесь своими знаниями, ответьте на вопрос:
Дан массив. есть ли в нем отрицательный элемент? заранее огромнейшее
var a:array[1..n] of integer;
i:integer;
begin
writeln('vvedite massiv=');
for i := 1 to n do
readln(a[i]);
for i := 1 to n do
if a[i]<0 then writeln('esti') else writeln ('net');
readln;
end.