+ 1
Float type summing
while the built-in fun "sum" will only work for integer, how can I sum float numbers?
2 Respostas
0
you can make your own function that take float parameters and return the float result of summing
0
like total = total + num, yeah that solved it, thanks