Difference between revisions of "Slash"
(new) |
|||
Line 1: | Line 1: | ||
− | The '''''/''''' or '''slash''' is used in a Pascal program to perform division. The results are a | + | The '''''/''''' or '''slash''' is used in a Pascal program to perform division. The results are a real value unless the values on both sides of the slash are integer, in which case the value is integer and the result is the same as the [[div]] operator. |
− | The value on the right side of the slash must not be zero, or a division by zero error | + | A := 3 / 4; |
+ | |||
+ | returns 0.75 if a is real, and zero if a is integer. | ||
+ | |||
+ | The value on the right side of the slash must not be zero, or a division by zero error occurs. This can be caught through use of a [[try]] .. [[finally]] or [[try]] .. [[except]] block. | ||
{{Symbols}} | {{Symbols}} | ||
{{Stub}} | {{Stub}} |
Revision as of 20:27, 10 May 2006
The / or slash is used in a Pascal program to perform division. The results are a real value unless the values on both sides of the slash are integer, in which case the value is integer and the result is the same as the div operator.
A := 3 / 4;
returns 0.75 if a is real, and zero if a is integer.
The value on the right side of the slash must not be zero, or a division by zero error occurs. This can be caught through use of a try .. finally or try .. except block.
single characters |
|
character pairs |
|