Consider the following code snippets...
Am I missing something or is this an issue with the compiler?
Thanks in advance for your help.
- PRINT "1/3 = "; 1.0 / 3.0 ' output = "1/3 = .3333333"
- PRINT "1/3 = "; 1.0# / 3.0# ' output = "1/3 = .333333333333333"
- PRINT "1/3 = "; CSNG(1.0# / 3.0#) ' output = "1/3 = .333333343267441"
- PRINT "1/3 = "; CSNG(1.0 / 3.0) ' output = "1/3 = .333333343267441"
Am I missing something or is this an issue with the compiler?
Thanks in advance for your help.
Comment