QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: xra7en on June 05, 2019, 09:56:31 pm
-
this produces a mismatch error for me.
amd I missing something, or using the "PRINT USING" incorrectly?
-
It's the "." that PRINT USING isn't liking, this works if you really want the dot at the end:
-
WEIRD
But ya. works!
I supposed when I get down the to "how-to's" it make sense. however on the surface, with the ";" at the end, you would think the "." would show up. :-)
thanks for the quick response!!!!
-
And this works!
-
Hey where is the % sign coming from?
-
I don't know why but this removes % sign
-
The % appears, if the number doesn't fit into the given format: 100 * RND * zz can become 999900 in your example, which doesn't fit into "####.##", but in "######.##" as Ashish did.
-
The % appears, if the number doesn't fit into the given format: 100 * RND * zz can become 999900 in your example, which doesn't fit into "####.##", but in "######.##" as Ashish did.
Ah yes, now I remember something like that, thanks guys.
Interesting how it prints the whole number breaking format length over, say starting or filling with %'s.