I've brought up this topic before if...else .. statement
Now my question is... i need to specified the time... where I know Java only can recognise "8" "9"... for hours ... and minutes from 1-60....
ok what if i need the action to be like this
Instead of
if ( time < 10 )
I want it to be like this
if ( time < 10.30 ) //meaning .. I want it to be 10.30am <--- is it possible.. if yes.. how i can do that ?
Thanks in advance :)