+ 1
How can i write an algorithm that is determine if the three number is equal
Algorithm
3 Respuestas
+ 5
if(a == b && a == c)
//do something
+ 3
Can also use the ternary operator to implement it.
https://code.sololearn.com/c5uiCRBjWO8L/?ref=app
+ 1
Thanks CarrieForle