这句VB代码应该怎么转成Delphi的?(100分)

  • 主题发起人 主题发起人 smithcouple
  • 开始时间 开始时间
S

smithcouple

Unregistered / Unconfirmed
GUEST, unregistred user!
弄了半天都不对

Public C as Byte
...
C = 0
...
if C then .........


我这样转:
var C: Byte;
...
C := 0;
...
if C???(这里怎么写?) then...


谢谢!
 
if c<>0 then ...
 
还有VB的
do
...
loop
换成Delphi是不是
repeat
...
until false
????
 
VB的do...
loop
换成Delphi是
repeat...
until true;
 
until true不是一下子就出去了?
 
[red]if C???(这里怎么写?) then...[/red]
写为
if bool(C) then...
 
var
C: Byte
...
C := 0
...
if C <> 0 then .........
 

Similar threads

S
回复
0
查看
896
SUNSTONE的Delphi笔记
S
S
回复
0
查看
873
SUNSTONE的Delphi笔记
S
D
回复
0
查看
777
DelphiTeacher的专栏
D
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部