araqsyabadalyan1988
?>

Решите программу в pascal: x=y^2-sqrt(y), при y> =0; x=3/y+y, при y< 0. напишите решение программы.

Информатика

Ответы

prettymarina2015
ответ в файле
david-arustamyan1

Решал на паскале. 

Первая:
var i:integer; s:string; a:array[1..3] of integer; t.q,z: boolean;
begin
readln(i); q:=false; t:=false;
a[1]:=i mod 10;
a[2]:=i div 10 mod 10;
a[3]:=i div 10 div 10;
for i:=1 to 3 do

begin
if a[i]=4 then

q:=true;

if (a[i]=7) and (q=true) then t:=true;

if a[i]=7 then z:=true;

end; 

if t=true then writeln('Vhodyat oba) else if (q=true) and (z=false) then writeln('Vhodit 4') else if (q=false) and (z=true) then writeln('Vhodut 7');
readln;
end.

 

 

Вторая:
var a,b,c,min:integer;
begin
min:=32000;
readln(a,b,c);
if a<min then min:=a; if b<min then min:=b; if c<min then min:=c;
writeln ('Minimalnoe - ',min);
readln;
end.

 

 

Третья:

var a,b,c:integer; x,y,d:real;

begin
readln(a,b,c);
d:=b*b-(4*a*c);

if d=0 then
begin
x:=(-b/2*a);
writeln('One root: ',x:0:0);
end;

if d>0 then
begin
x:=(-b+sqrt(d))/2*a;
y:=(-b-sqrt(d))/2*a;
if y>x then
writeln('Two roots: ',x:0:0,' ',y:0:0) else writeln('Two roots: ',y:0:0,' ',x:0:0);
end;

if d<0 then writeln('No roots');
readln;
end.:

 

 

 

 

lebedev815
Var InFile, OutFile: text; // Вводной и выводной файлы
Var a,b,c, D, Result : Integer;
Assign(InFile, "C:\kvur.txt");
Assign(OutFile, "C:\korni.txt")
Reset(InFile)
Read(InFile,a)
Read(InFile,b)
Read(InFile, c)
D = sqr(b) + 4*a*c
if D = 0 then
Write("Уравнение не имеет корней")
Else
  Append(OutFile)
  Result:=(-b + sqrt(D)) / 2 * a
  Write(OutFile,Result)
  Write("Корень уравнения")
  WriteLn(Result)
  if (D>0) then
    Result:=(-b - sqrt(D)) / 2 * a
    Write(OutFile, Result)
    Write("Второй корень уравнения")
    Write(Result)
  End;
End.

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Решите программу в pascal: x=y^2-sqrt(y), при y> =0; x=3/y+y, при y< 0. напишите решение программы.
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

marvindkc
Goldglobe
Мельникова
ekvld708
egornostaeva
tarigor
Barabanov Gerasimenko
Andei
gernovoy
lazaren-ko
Tatgri
irina25095462
minasov19
krisrespect2
maximpr6