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?
You will need two separate tests.
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.