could some one help. getting error with these 2 lines of code. num_red - count_red = red_pot;// all defined as 0
and
while (count_red = 0 && count_yellow = 0 && count_green = 0 && count_brown = 0 && count_blue = 0 && count_pink = 0)
{
if (count_black = 0)
{
score = score + 7;
printf("Score: %d\n", score);
num_balls = num_balls - 1;
}
}
If that's a C-like language, you need to use
==
for equality checks, not=
. The single=
is for assignment so that:is okay, but:
will, even if it compiles, not do what you expect.
You have a classic example in your code. The segment:
will not execute
blah
whencount_black
is zero. It will setcount_black
to zero and steadfastly refuse to ever executeblah
, since the result ofcount_blah = 0
is 0 (false).If you want the equality:
to be true, you need to assign one of those variables (the "unknown" one) based on the other two "known" ones. For example, if
num_red
andcount_red
are known, setred_pot
with:Alternatively, if
red_pot
andcount_red
are known, setnum_red
with: