I was able to create a login program in qbasic with this simple code:
cls
1 input "Username: " , username$
if username$ <> "Define what you want your name to be here (use the quotes)" then goto 1
else input "Password: " , password$
if password$ <> "Again define using quotes" then goto 1 else print "You have successfully logged in!"
Hope this helps!
===
I would have rewritten the above code...-without using outdated line numbers/being combined together with goto statements-...as being the following...
'*** set username/password...
userName$="abc"
passWord$="123"
'*** get username/password
DO
CLS
PRINT "Log in..."
INPUT "Username: ", guessUserName$
INPUT "Password: ", guessPassWord$
LOOP UNTIL guessUserName$=userName$ AND guessPassWord$=passWord$
'*** print welcome screen...
CLS
PRINT TIME$ + " " + DATE$
PRINT "Congratulations, "; userName$; ", you have successfully logged in!"
I know that one... I've done it a million times for either practice or my practical tests. I'm a ninth grader. What grade are you?
Anyway, here's how to make a simple calculator. When you make one, be sure to follow this script and put in the cases as done here. I'm showing you how to make one with just two numbers, but you can adjust it later to fit in three, four, or as many numbers as you want.
10 CLS
20 PRINT "Welcome to the QBasic Calculator!"
30 PRINT "Enter two numbers."
40 INPUT nm, nm1
50 PRINT "Choose a basic operation:"
60 PRINT "1. Add 2. Subtract 3. Multiply 4. Divide"
70 INPUT num
80 IF num = 1 THEN 100
90 IF num = 2 THEN 110
91 IF num = 3 THEN 120
92 IF num = 4 THEN 130
100 PRINT "The result is"; nm + nm1
GOTO 140
110 PRINT "The result is"; nm - nm1
GOTO 140
120 PRINT "The result is"; nm * nm1
GOTO 140
130 PRINT "The result is"; nm / nm1
140 PRINT "Hope you enjoyed the math!"
END
That's how you make a simple calculator. (QBasic always makes things simple once you get what it's trying to tell you.) If you want to know how you can do more calculations without exiting the program/output screen, just post another question----and leave the teaching to me!
Ciao for now!
======
I would have rewritten the above code...-without using outdated line numbers/together with goto statements-...as being the following, instead...
CLS
PRINT "Welcome to the QBASIC Calculator!"
PRINT "Enter two numbers each separated by a comma: (n,n)"
INPUT num1, num2
PRINT "Choose a basic operation:"
PRINT "MENU: 1> Add 2> Subtract 3> Multiply 4> Divide"
INPUT "Type a menu selection number from 1 to 4"; opNo%
SELECT CASE opNo%
CASE 1: answer = num1 + num2
CASE 2: answer = num1 - num2
CASE 3: answer = num1 * num2
CASE 4: answer = num1 / num2
END SELECT
PRINT "The answer is: "; answer
PRINT "Hope you enjoyed the math!"
END
You can make a program in qbasic very simply. Just you have to learn the commands, their syntax and where to use them. That's all and you can make any qbasic program that you want. For example
a program to print the table of any number:
CLS
INPUT "ENTER ANY NUMBER FOR TABLE" ;TABLE
CLS
FOR ANSWER=TABLE TO (TABLE*10) STEP TABLE
PRINT ANSWER
NEXT
END
CLS
PRINT "PROGRAM: Simple Calculator"
INPUT "First number: ", num1%
INPUT "Second number: ", num2%
PRINT "Type: 'A', to Add"
PRINT "Type: 'S', to Subtract"
PRINT "Type: 'D', to Divide"
PRINT "Type: 'M', to Multiply"
INPUT "Please, enter your letter: ", letter$
SELECT CASE letter$
CASE "A": PRINT num1% + num2%
CASE "S": PRINT num1% - num2%
CASE "D": PRINT num1% / num2%
CASE "M": PRINT num1% * num2%
END SELECT
END
There is no shortcut key of input in qbasic
The different types of operators in QBASIC are:Arithmetic OperatorsRelational OperatorsLogical Operators
Qbasic and Quickbasic are not the same! Qbasic was a free interpreter that Microsoft included with MS-DOS. Although Quickbasic uses similar syntax as quickbasic it allows programs to be compiled.
the two types of data used in Qbasic is numeric data and alpha numeric data.
The default screen mode for Qbasic is 0.
the extensions of qbasic are that, there are only 80 pixels to write in the qbasic
Willim Seward Burroughs was the first to create a working calculator.
qbasic is important because its technology
nose
There is no shortcut key of input in qbasic
The different types of operators in QBASIC are:Arithmetic OperatorsRelational OperatorsLogical Operators
Difference between QBASIC and GWBASIC?
CHOICE OF EITHER 32 BIT/OR ELSE, 64 BIT QBASIC PROGRAM VERSIONS There are both 32 bit/64 bit QBASIC program versions. You have to select which is the correct version that will run on your own operating system. For example,... -> Windows 95/98/XP, runs the 32 bit version(s) -> Windows 7 runs the 64 bit version CHOICE OF EITHER QBASIC 'INTERPRETER'/OR ELSE, 'COMPILER' VERSIONS QBASIC Version 1.1 was the original version; however, it is 'interpreter' only. This means you CANNOT use it to create stand alone [.exe]cutable files with. QBASIC Version 4.5 is a 'compiler' version; which CAN be used to create stand alone [.exe]cutable files with. QB64 is the 64 bit 'compiler' version which runs on 64 bit platforms; it can also be used to create stand alone [.exe]cutable files with.
Qbasic and Quickbasic are not the same! Qbasic was a free interpreter that Microsoft included with MS-DOS. Although Quickbasic uses similar syntax as quickbasic it allows programs to be compiled.
microsoft
Statement numbers were a feature of BASIC, and while QBASIC supports them, they are by no means necessary.
The advantage of qbasic is that it is easy to learn, to start out,then one can move on to more complex, or advanced languages.