Both qbasic and qb64 are great for math programs, in fact QB64 and qbasic,can be used to solve basic math problems , simply using the PRINT command,..without the " ",
Use the print command, PRINT , followed by the number and the symbol, add + subtract - or divide / and * is to multiply, for more complex, and other math formulas, I am not sure,..
PRINT "4 X 4="
PRINT 4 * 4
PRINT "6 diveded by 3 = "
PRINT 6 / 3
PRINT " 7 + 2="
PRINT 7 + 2
PRINT " Nine minus five equals "
PRINT 9 - 5
'/// or just by itself,
PRINT 25 - 20
For more complex, and other math formulas, I am not sure, however in the next few days, this week, I will see what more I can find.
Like wise, anyone that has samples or demos, of various math programs, is welcome to post them in this thread, but please include some explanation, as to how they work, so others can learn from them.
From Garry