Question: Explain the difference between s = 0; if (x > 0) { s++; } if (y > 0) { s++; } and s = 0;
Explain the difference between
s = 0;
if (x > 0) { s++; }
if (y > 0) { s++; }
and
s = 0;
if (x > 0) { s++; }
else if (y > 0) { s++; }
Step by Step Solution
3.42 Rating (161 Votes )
There are 3 Steps involved in it
s 0 if x 0 s if y 0 s In the above code snippet ther... View full answer
Get step-by-step solutions from verified subject matter experts
