Реферат: Построение блок схем алгоритмов. Алгоритмические языки высокого уровня
#include<iostream.h> #include<math.h> void main() {
float dx=0.25,y,x;
for (x=2.0;x<=5.0 +0.5*dx;x+=dx)
{
if (x<=3.5)
y=cos(x)*cos(x);
else
y=sin(x)*log(x);
cout<<"Y= "<<y<<endl;
} }
Program lab_2; Uses Crt; Const
dx=0.25; Var
x,y:real; Begin
clrscr;
x:=2.0;
while x<5.0+dx/2 do
begin
if x<=3.5 then
begin
y:=sqr(cos(x));
end
else y:=sin(x)*ln(x);
writeln(y:3:5);
x:=x+dx;
end;
readln; End.
unit Unit1;
interface
uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;
--> ЧИТАТЬ ПОЛНОСТЬЮ <--