RogerBacon
King
- Joined
- Nov 16, 2003
- Messages
- 649
If I have some integers:
int1 = 10
int2 = 3
and I do:
int3 = int1 / int2
will I get 3 as my answer?
Likewise, if I do:
int3 = int1 * 1.25
will I get 12 as my answer?
Sorry to sound so lazy but I'm at work right now and I can't test it myself.
Roger Bacon
int1 = 10
int2 = 3
and I do:
int3 = int1 / int2
will I get 3 as my answer?
Likewise, if I do:
int3 = int1 * 1.25
will I get 12 as my answer?
Sorry to sound so lazy but I'm at work right now and I can't test it myself.
Roger Bacon