enter two numbers check that the first no is divisible by 2 nd of not in QB64
Answers
Answered by
2
Answer:
- INTEGER [%]: 2 Byte signed whole number values from -32768 to 32767. 0 to 65535 unsigned. (not checked in QB64)
- LONG [&]: 4 byte signed whole number values from -2147483648 to 2147483647. 0 to 4294967295 unsigned.
- SINGLE [!]: 4 byte signed floating decimal point values of up to 7 decimal place accuracy. Cannot be unsigned.
- DOUBLE [#]: 8 byte signed floating decimal point values of up to 15 decimal place accuracy. Cannot be unsigned.
- To get one byte values, can use an ASCII STRING character to represent values from 0 to 255 as in BINARY files.
Similar questions