+ 1
In my solution first 2 outputs are correct but 3 of them are incorrect but I can't see output of my code.
4 Respostas
0
Challenge says round UP to the nearest whole number. Use math.ceil instead of round
+ 1
Which language?
Which challenge?
Where is your code?
0
Python
Halloween candy
houses = int(input())
posibility = 100 * (2 / houses )
posibility = int(round(posibility, 0))
print(posibility)
0
Thx