鱼C论坛

 找回密码
 立即注册
查看: 2238|回复: 1

刚学的Dephi 大家帮忙看看我的代码哪里有问题!

[复制链接]
发表于 2013-9-20 20:41:28 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
最大值的下标是从右往左拉~!

unit Unit1;
interface
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;
type
  TForm1 = class(TForm)
    edt1: TEdit;
    btn1: TButton;
    lbl1: TLabel;
    lbl2: TLabel;
    edt2: TEdit;
    edt3: TEdit;
    procedure btn1Click(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
var
  Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.btn1Click(Sender: TObject);
var
  rad_num: array[1..10] of Integer;
  i,j:Integer;
  max,max_1:Integer;
begin
  edt1.Text:='';
  edt2.Text:='';
  edt3.Text:='';

  for i :=1 to 10 do
  begin
    Randomize;
    rad_num[i] := 10 + Random(90) ;
    edt1.Text:=IntToStr(rad_num[i]) + ','+ edt1.Text;
  end;
  edt1.Text:= Copy(edt1.Text, 1, Length(edt1.Text) - 1);
  max:=rad_num[1];
  max_1:=1;
  for i:= 2 to 10 do
  begin
    if (max < rad_num[i]) then
    begin
    max:= rad_num[i] ;
    max_1:=i;
    end;
  end;
    edt2.Text:=IntToStr(max);
    edt3.Text:=IntToStr(max_1);
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
  SetWindowLong(edt1.Handle,GWL_STYLE,GetWindowLong(edt1.Handle,GWL_STYLE)+ES_CENTER);
  edt1.Refresh;
  //以上代码是光标定位在中间
end;
end.
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-9-20 20:51:47 | 显示全部楼层
你确定 你刚学?? 我刚刚看了三课 但你的代码 我......
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 14:48

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表