Hello I need to figure this out, I tried
if ((Fire = 0) || (Water = 0) || (Air = 0) || (Earth = 0))
{
System.out.println("Hello");
}
But the compiler says I cant use && for ints, I need to get a value for each variable and
have certain outputs for different combinations of numbers.
Basically if all are 0 then something happens, if fire is 1 and water is 6 and the rest are 0 something happens etc. I can figure the rest out I just need to work around this &&
problem.
Thanks