Код программы:
var c, d, z:real;
begin
writeln('Введите c');
readln(c);
d := sin(c/2);
writeln('d = ', d);
if c > sin(d) then
z:=c+sqr(d)
else
z := c - sqrt(d);
writeln('z = ', z);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Код программы:
var c, d, z:real;
begin
writeln('Введите c');
readln(c);
d := sin(c/2);
writeln('d = ', d);
if c > sin(d) then
z:=c+sqr(d)
else
z := c - sqrt(d);
writeln('z = ', z);
end.