PDA

View Full Version : Help find BASIC Run



Noxious020189
09-22-2005, 12:46 PM
Alright right now I'm in this class called "computer programming", and I don't think it deserves to be called that with us being in BASIC for 3 weeks straight. Anyways I cannot find a program or app that will let me run .bas files...I have VB6 with C++, and I know C++ won't run it, but VB should but it gives me some stuped error...Anyways if anyone can help me...Here is my code for the class so far...

5 CLS
10 REM Program Name:
20 REM Programmer Name:
30 REM Date Created:
40 REM Purpose:
50 REM Variable Names:
60 REM Shirt = Shirt Price
70 REM Skirt = Skirt Price
80 REM Shoes = Shoes Price
90 REM Pants = Pants Price
100 REM Coat = Coat Price
110 REM Shirt10 = Shrit 10 Percent
120 REM Shirt15 = Shirt 15 Percent
130 REM Shirt20 = Shirt 20 Percent
140 REM Shirt25 = Shirt 25 Percent
150 REM Skirt10 = Skirt 10 Percent
160 REM Skirt15 = Skirt 15 Percent
170 REM Skirt20 = Skirt 20 Percent
180 REM Skirt25 = Skirt 25 Percent
190 REM Shoes10 = Shoes 10 Percent
200 REM Shoes15 = Shoes 15 Percent
210 REM Shoes20 = Shoes 20 Percent
220 REM Shoes25 = Shoes 25 Percent
230 REM Pants10 = Pants 10 Percent
240 REM Pants15 = Pants 15 Percent
250 REM Pants20 = Pants 20 Percent
260 REM Pants25 = Pants 25 Percent
270 REM Coat10 = Coat 10 Percent
280 REM Coat15 = Coat 15 Percent
290 REM Coat20 = Coat 20 Percent
300 REM Coat25 = Coat 25 Percent
310 REM
320 LET Shirt = 24.99
330 LET Skirt = 21.95
340 LET Shoes = 89.95
350 LET Pants = 34.99
360 LET Coat = 94.95
370 LET Shirt10 = Shirt - (Shirt * .1)
380 LET Shirt15 = Shirt - (Shirt * .15)
390 LET Shirt20 = Shirt - (Shirt * .2)
400 LET Shirt25 = Shirt - (Shirt * .25)
410 LET Skirt10 = Skirt - (Skirt * .1)
420 LET Skirt15 = Skirt - (Skirt * .15)
430 LET Skirt20 = Skirt - (Skirt * .2)
440 LET Skirt25 = Skirt - (Skirt * .25)

Here is one work sheet:
http://illhostit.com/files/1249601426004784/Sheet%204.doc

and here is the first problem that I did in class on it
http://illhostit.com/files/2944936495387819/Sheet4%20Program1.doc

eshbach
09-22-2005, 03:30 PM
qbasic

Noxious020189
09-22-2005, 03:59 PM
linkage?

[XC] moddolicous
09-22-2005, 06:00 PM
http://www.google.com/search?hl=en&q=qbasic&btnG=Google+Search
Maybe this is what he was talking about.