C
carem1
Unregistered / Unconfirmed
GUEST, unregistred user!
var
startip,endip:string;
begin
startip:='192.168.0.0';
endip:='192.168.0.255';
for startip to endip do
..................
.................................
end;
我的意愿是从192.168.0.0 就开始循环 , 到192.168.0.255 就停止 。怎么表示??
startip,endip:string;
begin
startip:='192.168.0.0';
endip:='192.168.0.255';
for startip to endip do
..................
.................................
end;
我的意愿是从192.168.0.0 就开始循环 , 到192.168.0.255 就停止 。怎么表示??