用Delphi编写一个小程序

用Delphi编写一个小程序,最简单的HELLO WORD!的在程序
2025-05-13 08:13:26
推荐回答(1个)
回答1:

procedure TForm1.FormCreate(Sender: TObject);
begin
label1.Caption:='HELLO WORD!';
end;