+ 5
Find out the error in this code????
3 Answers
+ 8
Line 13: '==' should be used for equality comparison instead of '=' (assignment operator).
+ 4
Yes. == needed to check equality. = is used for assignment. You can also use debug type printf statements as in the following to see what is happening in your code (but not for compiler errors like the ==).
https://code.sololearn.com/c29V1vRI7zP9/?ref=app
+ 4
EMANUELE OGGIANO could you check again. If you input 5 you get your desired triple.