learning-to-code/qb64/order-system.bas

31 lines
734 B
QBasic
Raw Normal View History

2021-04-21 02:22:17 +00:00
_Title "Generic Ordering System"
REM Order System 0.1
2021-03-04 01:40:43 +00:00
REM by John Paul Wohlscheid
REM Variables
DIM items% 'item total
DIM fname$ 'customer first name
DIM lname$ 'customer last name
DIM total% 'order total
REM Main Program
PRINT TAB(15); "Welcome to the first version of this Order System."
PRINT TAB(15); "To place your order, enter the amount you of each"
PRINT TAB(15); "item you want and the amount will be totalled"
PRINT TAB(15); "at the end."
2021-04-21 02:22:17 +00:00
print
print
print
2021-03-04 01:40:43 +00:00
PRINT
2021-04-21 02:22:17 +00:00
PRINT "First of all, please enter your name."
2021-03-04 01:40:43 +00:00
INPUT "Enter your first name: ", fname$
INPUT "Enter your last name: ", lname$
2021-04-21 02:22:17 +00:00
cls
PRINT TAB(15); "Thank you, " + fname$ + "!"
PRINT TAB(15); "Now, let's get to ordering."
2021-03-04 01:40:43 +00:00
PRINT