Thread Schleifendurchläufe berechnen (12 answers)
Opened by qwe123qwe at 2014-02-04 13:54

Gast wer
 2014-02-04 16:01
#173367 #173367
Code (perl): (dl )
1
2
3
4
sub schleifenanzahl ($$$$) {
  my ($von, $bis, $schritt, $count )=@_;
  return $count * ( int( abs($bis-$von)/$schritt )+1 );
} # end sub schleifenanzahl

Last edited: 2014-02-04 16:31:27 +0100 (CET)

View full thread Schleifendurchläufe berechnen