INTEGER (QuickBasic)

From Just Solve the File Format Problem
(Difference between revisions)
Jump to: navigation, search
(Created page with "{{FormatInfo | name = INTEGER | formattype = electronic | subcat = Data types | subcat2 = QuickBASIC | caption = }} {{DISPLAYTITLE:INTEGER...")
 
Line 21: Line 21:
  
 
Using the suffix:
 
Using the suffix:
{{FormatInfo
 
| name          = INTEGER
 
| formattype    = electronic
 
| subcat        = Data types
 
| subcat2        = QuickBASIC
 
| caption        =
 
}}
 
{{DISPLAYTITLE:INTEGER}}
 
  
The '''INTEGER''' type in [[QuickBASIC]] stores non-floating-point numbers from -32,768 to 32,767. INTEGER types can be defined with the <code>%</code> suffix.
 
 
= Syntax =
 
 
Using the <code>DIM</code> statement:
 
 
<pre>
 
DIM i AS INTEGER
 
i = 38
 
PRINT i
 
</pre>
 
 
Using the suffix:
 
 
<pre>
 
i% = 38
 
PRINT i%
 
</pre>
 
 
<pre>
 
<pre>
 
i% = 38
 
i% = 38
 
PRINT i%
 
PRINT i%
 
</pre>
 
</pre>

Revision as of 12:06, 31 July 2023

File Format
Name INTEGER
Ontology


The INTEGER type in QuickBASIC stores non-floating-point numbers from -32,768 to 32,767. INTEGER types can be defined with the % suffix.

Syntax

Using the DIM statement:

DIM i AS INTEGER
i = 38
PRINT i

Using the suffix:

i% = 38
PRINT i%
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox