Quick Basic in Application

Posts Tagged ‘Variables and basic math

Variables and basic math

Posted by: programmervb on: May 20, 2008

Let’s start wuth this
CLS
Let variable=7
?Variable
ps:
Remember that this program will not print the word variable, it will print whatever letters or numbers have been assigned to that variable.
and next a new program that adds two variables
cls
first=4
second=6
third=first + second
?first;”+”second;”=”;third