andioop@programming.dev to Programming Horror@programming.devEnglish · edit-211 months agoGod I wish there was an easier way to do thisprogramming.devimagemessage-square55fedilinkarrow-up1216arrow-down121
arrow-up1195arrow-down1imageGod I wish there was an easier way to do thisprogramming.devandioop@programming.dev to Programming Horror@programming.devEnglish · edit-211 months agomessage-square55fedilink
minus-squareRandomVideos@programming.devlinkfedilinkarrow-up2·11 months agoThis code is terrible. If you input 10.66 it returns "number is odd It should be: if number % 2 == 0 return "number is even" (is_num_even = 1 or true) else return "number is not even" (is_num_even = 0 or false)
This code is terrible. If you input 10.66 it returns "number is odd
It should be:
if number % 2 == 0 return "number is even" (is_num_even = 1 or true) else return "number is not even" (is_num_even = 0 or false)