Posts by Thiago Tavares • 11 points
1 post
-
1
votes2
answers48
viewsA: galley that part " if ((S%10=0) && (S<Vt))" is not going
In the language C you have to use 2 equal in comparison. In this case it would be: if (s%10 == 0 && s < vt)
canswered Thiago Tavares 11