Hi,
i remember that in some language , we have a feature that is somewhat similar to this :
int i;
if (i IN (2,5,7, 8,11,13, 12,17))
{
// DO SOMETHING
}
I have used the syntax as a help of course. This is not the way it is in C,C++.
Is there anything similar in
Java? Or, do have to cascade in
a switch or else use multiple | | (conditional OR) ?
Shree