Doggone it, I couldn't figure out why this program wasn't working, and it boils down to this:
WTH, over? My results are: 35.51 3551 3550
How does that make any sense? Why is Int(3551) not simply 3551??
Code: (Select All)
x = 35.51
y = x * 100
z = Int(y)
Print x, y, z
WTH, over? My results are: 35.51 3551 3550
How does that make any sense? Why is Int(3551) not simply 3551??