Oct 16, 2014 at 9:57pm
My function needs to go like this:
if x is not equal to y and z is above(>) 1
I tried to write it but it didn't seem to work in the program, this is what i wrote:
if (x != y & z > 1)
Oct 16, 2014 at 10:00pm
you're close
if ( x != y && z > 1 )