Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. do
  2. {
  3. $floodVal = $floodMin + $flo * $floodPas;
  4. $intersectVal = $intersectMin + $int * $intersectPas;
  5.  
  6. if ( $intersectVal == $floodVal)
  7. {
  8. $cote = number_format($intersectVal, 2, '.', '');
  9. $value .= "$int $cote ";
  10. $int++;
  11. }
  12. $flo++;
  13. }
  14. while ( $floodVal <= $floodMax && $intersectVal <= $intersectMax );
  15. $value = substr($value, 0, -1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement