- 1
What is the value of the variable b after running this piece of code?
int a = 5; int b = 10; if ( (a < b) && !(7 > b) ) { if ( b < 3 ) { b += 5; } else { b *= 2; } } else { b++; }
1 Réponse
0
try it by yourself, by running it in a code playground ;P