*/  ( n1 n2 n3 -- n4=(n1*n2)/n3 )

published: 28 January 2023 / updated 28 January 2023

Lire cette page en français

 

vocabulary: forth

Multiply n1 by n2 producing the intermediate double-cell result d. Divide d by n3 giving the single-cell quotient n4.

Example:

5000 1000 4000 */ .    \ display    1250