Лабораторна робота № 2. P>
Мета роботи: Вивчення методів візуального програмування в Delphi. P>
Завдання: Побудувати графіки функцій;; p>
Текст програми: p>
unit Graph; p>
interface p>
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, TeEngine, Series, ExtCtrls, TeeProcs, Chart; p>
type
TForm1 = class (TForm) p>
Edit1: TEdit; p>
Edit2: TEdit; p>
Edit3: TEdit; p>
Edit4: TEdit; p>
Edit5: TEdit; p>
Label1: TLabel; p>
Label2: TLabel; p>
Label3: TLabel; p>
Label4: TLabel; p>
Label5: TLabel; p>
Chart1: TChart ; p>
Series1: TLineSeries; p>
Series2: TLineSeries; p>
Series3: TLineSeries; p>
Button1: TButton; procedure Button1Click (Sender: TObject); private p>
(Private declarations) public p>
(Public declarations) end; p>
var
Form1: TForm1; p>
implementation p>
($ R *. DFM) p>
procedure TForm1.Button1Click (Sender: TObject);
VAR T0, TK, Q, W, Y1, Y2, Y3: REAL; i, H: real;begin
Q: = StrToFloat (Edit1.Text);
W: = strToFloat (Edit2.Text);
H: = StrToFloat (Edit3.Text);
T0: = StrToFloat (Edit4.Text);
TK: = StrToFloat (Edit5.Text);i: = T0;
Series1.Clear;
Series2.Clear;
Series3.Clear;while i p>