Merge remote-tracking branch 'origin/master'

This commit is contained in:
John Paul Wohlscheid 2021-04-20 22:22:31 -04:00
commit 28b2ce8637

23
basic/ordering-system.bas Normal file
View File

@ -0,0 +1,23 @@
REM Order System 0.5 - FreeBasic Edition
REM by John Paul Wohlscheid
REM Variables
DIM items as integer 'item total
DIM fname as string 'customer first name
DIM lname as string 'customer last name
DIM total as integer '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."
PRINT
PRINT TAB(15); "First of all, please enter your name."
INPUT "Enter your first name: ", fname
INPUT "Enter your last name: ", lname
PRINT "Thank you, " + fname + "!"
PRINT