Hello,
how to do simple code for:
if(alphabet)
output ERROR
because char is int I cannot do like this:
if(sale >= 'a' && sale =< 'z')
because if my sale is 98 it will output error because b is 98.
I want number, not character.
how?
Thank you.
how to do simple code for:
if(alphabet)
output ERROR
because char is int I cannot do like this:
if(sale >= 'a' && sale =< 'z')
because if my sale is 98 it will output error because b is 98.
I want number, not character.
how?
Thank you.
Comment