| ★ wanayoo — archive 1999 http://whatis.com/basic.htm | Nouvelle recherche | Portail wanayoo |
BASIC (Beginner's All-Purpose Symbolic Instruction Code)
|
|
BASIC continues to be widely used because it can be learned quickly, its statements are easy to read by other programmers, and support is available on most operating systems. BASIC's documentation has been translated into many national languages. It often comes with sound and graphics support. A popular version of BASIC today is QBASIC.
BASIC is used in many business applications and is still considered a valid choice as a programming language for some purposes. Microsoft's Visual Basic adds object-oriented features and a graphical user interface to the standard BASIC.
The following example of BASIC gets a number from a user, multiplies the number by 10, and prints or displays the result:
10 PRINT 'Enter a number' 20 INPUT NUM 30 PRINT 'Your number * 10 is ';NUM*10;
Chuck Easttom's VB World is a place to start learning Visual Basic.
Chuck Easttom's VB World is a place to start learning Visual Basic.
|
|
Copyright © 1996-1999 whatis.com Inc. All rights reserved.