首先 Delphi 里 Begin end; 是 c++里的{},就是将 begin~ end; 里的内容视为一个团,满足条件是会执行 begin end 内的内容 若只需执行一行代码 begin end 可以省略。好了接下来 1. IF(条件)then (执行内容);2. IF (条件) then begin (执行内容1);(执行内容2);end;3. IF (条...
最笨的方法是:if (StrToInt(edt1.Text)=20) or (StrToInt(edt1.Text)=22) or (StrToInt(edt1.Text)=23) or (StrToInt(edt1.Text)=24) then 稍微聪明点的办法:if (StrToInt(edt1.Text)>=20) and (StrToInt(edt1.Text)<=24) and (StrToInt(edt1.Text)!=21) then 最好的办法:if S...
if StrToInt(Edit6.Text) > 5 then begin MessageDlg('<'+Edit3.Text+'>已达到借阅上限',mtError,[mbok],0); end else begin try with ADOQuery1 do begin sql.Clear; sql.Add('insert into Lend(Code,ReaderID,OutDate)'+ 'values(:Code,:ReaderID,:OutDate...
else begin <语句块2> end 就是当逻辑表达式的值为真时,执行语句1或语句块1(内中可有若干语句);当逻辑表达式的值为假时,执行语句2或语句块2(内中可有若干语句)。,其中语句2或语句块2是可选的。还有,if语句是可以嵌套使用的。当if语句嵌套使用时,每一个else子句,总是与它前面离它“...
1、IF.. THEN if 1=1 then begin //这里写执行语句 end; 2、IF..ELSE if 1=1 then begin ... end //记住这里不能加分号。 else begin ... end; //这里需要加分号 3、IF...ELSE IF.. if 1=1 then begin ... end //记住这里不
1if语句 对if-then型语句,仅当条件满足时,语句才执行;对if-then-else型,if语句在两条语句中选择一条执行。条件用布尔表达式建立,句子中的条件部分可以是一系列条件(用and、 or 、 not等布尔操作符联接起来),if语句又可以嵌套另一个if语句,要注意的是,不能在第一句之后、else 关键词之前加分号,否则编译器将...
1.IF.. THEN if 1=1 then begin //这里写执行语句 end; 2.IF..ELSE if 1=1 then begin ... end//记住这里不能加分号。 else begin ... end;//这里需要加分号 3.IF...ELSE IF.. if 1=1 then begin ... end//记住这里不能加分号。 else...
if 条件表达式 then 语句1 else 语句2;if a>b then begin Showmessage('a比b大');showmessage('haha');end //不能带分号 else begin Showmessage('b比a大');showmessage('hahaha');end;//带分号
if 条件表达式 then 语句1else 语句2;if a>b then begin Showmessage('a比b大'); showmessage('haha'); end //不能带分号elsebegin Showmessage('b比a大'); showmessage('hahaha');end;//带分号 解析看不懂?免费查看同类题视频解析查看解答
1.类型:if ··· then···,if···then···else···,if ···then ···else if··· else···2.2.打开IDE,新建VCL...