本文介绍了在Perl中每100个循环后添加+ 1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
for ($i=0;$i<1000;$i++)
{
my $nr1= 10 + int(rand(0x150));
my $nr2 = 10 + 1 after 100 loops
}
So i have this script above in a loop of 1000,
is it possible to add 1 after every 100 loops for my $nr2 ???
$nr1 adds every count plus 1.
All help appreciated
Regards,
Dennis
推荐答案
这篇关于在Perl中每100个循环后添加+ 1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!