下面图老师小编要向大家介绍下偶的第二个Delphi程序,看起来复杂实则是简单的,掌握好技巧就OK,喜欢就赶紧收藏起来吧!
【 tulaoshi.com - 编程语言 】
unit Unit1;
interface
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/) uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Label2: TLabel;
Button1: TButton;
Edit1: TEdit;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
const pi=3.14159;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var r,c,s:real;
begin
if edit1.text='' then
showmessage('输入为空,请重新输入!') //如果没有输入数据 则提示
else
begin
r:=strtofloat(edit1.text);
c:=2*pi*r;
s:=pi*sqr(r);
label2.Caption:='该圆的周长是:'+floattostr(c)+chr(13)+'面积是:'+floattostr(s); //显示结果
end;
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
form1.Close; //退出按钮的事件代码
end;
end.
来源:http://www.tulaoshi.com/n/20160219/1621290.html
看过《偶的第二个Delphi程序》的人还看了以下文章 更多>>