..., value1, value2 => ..., resultvalue1 and value2 should be integers. The values are added and are replaced on the stack by their integer sum.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should be long integers. The values are added and are replaced on the stack by their long integer sum.
..., value1, value2 => ..., resultvalue1 and value2 should be single precision floating point numbers. The values are added and are replaced on the stack by their single precision floating point sum.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should be double precision floating point numbers. The values are added and are replaced on the stack by their double precision floating point sum.
..., value1, value2 => ..., resultvalue1 and value2 should be integers. value2 is subtracted from value1, and both values are replaced on the stack by their integer difference.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should be long integers. value2 is subtracted from value1, and both values are replaced on the stack by their long integer difference.
..., value1, value2 => ..., resultvalue1 and value2 should be single precision floating point numbers. value2 is subtracted from value1, and both values are replaced on the stack by their single precision floating point difference.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should be double precision floating point numbers. value2 is subtracted from value1, and both values are replaced on the stack by their double precision floating point difference.
..., value1, value2 => ..., resultvalue1 and value2 should be integers. Both values are replaced on the stack by their integer product.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should be long integers. Both values are replaced on the stack by their long integer product.
..., value1, value2 => ..., resultvalue1 and value2 should be single precision floating point numbers. Both values are replaced on the stack by their single precision floating point product.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should be double precision floating point numbers. Both values are replaced on the stack by their double precision floating point product.
..., value1, value2 => ..., resultvalue1 and value2 should be integers. value1 is divided by value2, and both values are replaced on the stack by their integer quotient.
The result is truncated to the nearest integer that is between it and 0. An attempt to divide by zero results in a "/ by zero" ArithmeticException being thrown.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should be long integers. value1 is divided by value2, and both values are replaced on the stack by their long integer quotient.
The result is truncated to the nearest integer that is between it and 0. An attempt to divide by zero results in a "/ by zero" ArithmeticException being thrown.
..., value1, value2 => ..., resultvalue1 and value2 should be single precision floating point numbers. value1 is divided by value2, and both values are replaced on the stack by their single precision floating point quotient.
Divide by zero results in the quotient being NaN.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should be double precision floating point numbers. value1 is divided by value2, and both values are replaced on the stack by their double precision floating point quotient.
Divide by zero results in the quotient being NaN.
..., value1, value2 => ..., resultvalue1 and value2 should both be integers. value1 is divided by value2, and both values are replaced on the stack by their integer remainder.
An attempt to divide by zero results in a "/ by zero" ArithmeticException being thrown.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should both be long integers. value1 is divided by value2, and both values are replaced on the stack by their long integer remainder.
An attempt to divide by zero results in a "/ by zero" ArithmeticException being thrown.
..., value1, value2 => ..., resultvalue1 and value2 should both be single precision floating point numbers. value1 is divided by value2, and the quotient is truncated to an integer, and then multiplied by value2. The product is subtracted from value1.The result, as a single precision floating point number, replaces both values on the stack. That is, result = value1 - ((int)(value1/value2)) * value2.
An attempt to divide by zero results in NaN.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should both be double precision floating point numbers. value1 is divided by value2, and the quotient is truncated to an integer, and then multiplied by value2. The product is subtracted from value1.The result, as a double precision floating point number, replaces both values on the stack. That is, result = value1 - ((int)(value1/value2)) * value2.
An attempt to divide by zero results in NaN.
..., value => ..., resultvalue should be an integer. It is replaced on the stack by its arithmetic negation.
..., value-word1, value-word2 => ..., result-word1, result-word2value should be a long integer. It is replaced on the stack by its arithmetic negation.
..., value => ..., resultvalue should be a single precision floating point number. It is replaced on the stack by its arithmetic negation.
..., value-word1, value-word2 => ..., result-word1, result-word2value should be a double precision floating point number. It is replaced on the stack by its arithmetic negation.
Generated with CERN WebMaker