30000 in numeric words
Any character except numbers. So letters, punctuation symbols etc. are non-numeric.
They are all numeric characters, exactly as you have written it.
There is no such word as numberic and the meaning of a numberic number is even more obscure. In numerical terms, the number is 30000.
a digit (number) as opposed to a letter--
30000 in numeric words
how do you write $12.00 in a numeric character?
Any character except numbers. So letters, punctuation symbols etc. are non-numeric.
Any character except numbers. So letters, punctuation symbols etc. are non-numeric.
Any character except numbers. So letters, punctuation symbols etc. are non-numeric.
IF WS-AGE NUMERIC DISPLAY "NUMERIC" ELSE DISPLAY "NOT NUMERIC' END-IF
They are all numeric characters, exactly as you have written it.
There is no such word as numberic and the meaning of a numberic number is even more obscure. In numerical terms, the number is 30000.
vn1898553
a digit (number) as opposed to a letter--
The hash character which looks like this: #
1 is an integral integer type with the numeric value 1. '1' is an integral character type with the numeric value 49. That is, ASCII character 49 returns the symbol '1'. To convert an ASCII character in the range '0' to '9' to its integral numeric value, subtract character '0' from the character. ASCII character '0' has the numeric value 48, thus '1' - '0' = 49 - 48 = 1. To convert a numeric value in the range 0 to 9 to its ASCII character equivalent, add character '0' to the value. Thus 1 + '0' = 1 + 48 = 49 = '1'.