A%=3.14 PRINT "A% is a Global variable that only holds whole numbers. So A% was 3.14 but now is: ";A% A%=-1000 PRINT "A% also will hold a negative number ";A% A%=+100000 PRINT "A% also will hold a postitive number ";A% PRINT "***************************************************************" a=3.14 a#=3.14 PRINT "a will hold a decimal number ";a PRINT "a# will also hold a decimal number ";a# a#=-500 PRINT "If a# is given -500 then you will see ";a# PRINT "***************************************************************" a%=-200000 b%=+200000 PRINT "a% will hold a negative number ";a% PRINT "b% will hold a positive number ";b% a%=3.14 PRINT "If a% is assigned 3.14 you will see ";a% PRINT "***************************************************************" a&= 256 PRINT "if a& is assigned a value of 256 then a&= ";a&;" Your limit is 255, so 256 wont work" PRINT PRINT "So the undisputed champion is : a or a#.. BUT they are not global variables."
|