Search found 81 matches

by Xerol
Tue Mar 08, 2005 7:50 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: exceeding 9,999,999
Replies: 5
Views: 10521

More specifically, # defines a number as double-precision. Eventually you will hit a point where those go into xE+yy form as well, except it'll say xD+yyy instead. You could also have done the following: DIM num AS DOUBLE or: DEFDBL N The first one declares num as a variable of type double. The seco...