How to get on input ONLY numeric characters on IJVM?

134 Views Asked by At

I'll do a "SIMPLE program" on IJVM, but it asks:

You must get on input ONLY numeric characters ( 0x30 to 0x39).

So if I'll insert for example (A or b or g etc.. ) it will stop with "HALT". How can I make a condition that take the value from 0x30 to 0x39 without alphabetic characters?

1

There are 1 best solutions below

3
On

You will need two separate tests.

  1. First, test if the input is not less than 0x30.
  2. Second, test that the input is less than 0x40.

If it meets both conditions, then it is input that you want.


Response to comment about three types of 'if':

Each conditional branch has two possible jump targets, one for when the condition is true, the other for when the condition is false.

For the n < 0 test, the TRUE address will be taken when n < 0, the FALSE address will be taken when n >= 0. The n < 0 test can also test for n >= 0, depending on the address taken.