+ 1
what is the output of this code?
I am having trouble with this What is the output of this code? a = 25 b = 8 x = a/b puts x+b
1 Antwoord
+ 6
x = a/b = 25/8 = 3
x + b = 3 + 8 = 11
So the output will be 11
I am having trouble with this What is the output of this code? a = 25 b = 8 x = a/b puts x+b