Delphi 学习大师
会员中心
搜索
Delphi 学习大师
文章详情
副标题
delphi for 循环 to和downto的理解
2018-10-30
delphi for 循环 to和downto的理解
procedure TForm1.btn1Click(Sender: TObject);
var
c:Integer;
begin
for c:=5 downto 0 do
begin
ShowMessage(IntToStr(c));
end;
end;
for c:=0 to 5 do
begin
ShowMessage(IntToStr(c));
end;
end;
end.
其实就是证明循环式从小到大还是从大到小
线程
阅读69
发表评论
登录评论
匿名评论
提交
提交