Quick Basic in Application

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

1 Response to "Variables and basic math"

great code … tks a lot

Leave a Reply