1. A very useful program for shopkeeper which collects the prices of goods one by one and then gives the total number of items and then tells the total bill with many other features:
Syntax:
10 CLS
11 DIM A(50,50)
12 V=1
13 PRINT
14 PRINT"WELCOME TO SMART MART SOFTWARE"
15 PRINT
16 PRINT" PRESS THE ENTER KEY TO START. THEN ENTER THE PRICES ONE BY ONE. PRESS THE ENTER KEY OR ENTER 0(ZERO KEY) WHEN YOU ARE FINISHED"
17 INPUT"PRESS THE ENTER KEY TO START";W$
18 IF W$="" THEN 19 ELSE 15
19 CLS
20 WHILE V<>0
21 PRINT
22 PRINT
23 INPUT"ENTER THE PRICE OF THE PRODUCT OR ENTER 0 TO FINISH",A(V,V)
24 IF A(V,V)=0 THEN 28
25 S=S+A(V,V)
26 V=V+1
27 WEND
28 CLS
29 FOR Z=1 TO 5
30 PRINT
31 NEXT Z
32 INPUT"FOR TOTAL BILL ENTER-1, TO RESTART ENTER-2, TO PRINT BILL ON PRINTER ENTER-3, TO EXIT ENTER 4" ;G
33 ON G GOTO 37,54,34,56
34 LPRINT "YOUR BILL IS";S;"RUPEES"; "AND YOU HAVE PURCHASED";V-1;"ITEMS";"THANK YOU"
35 CLS
36 PRINT" YOUR BILL IS BEING PRINTED, COLLECT IT":GOTO 32
37 FOR K=1 TO 8
38 PRINT
39 NEXT K
40 PRINT" YOUR BILL IS AS FOLLOWS;"
41 FOR K=1 TO 5
42 PRINT
43 NEXT K
44 PRINT" YOU HAVE PURCHASED";V-1;"PRODUCTS"
45 PRINT
46 PRINT
47 PRINT" YOUR TOTAL IS";S;"RUPEES"
48 PRINT
49 PRINT
50 PRINT" YOUR AVERAGE PRICE IS";S(V-1);"RUPEES"
51 PRINT
52 PRINT
53 PRINT" THANK YOU FOR SHOPPING FROM SMART MART":PRINT:GOTO 32
54 CLS
55 GOTO 17
56 CLS
57 FOR K=1 TO 9
58 PRINT
59 NEXT K
60 PRINT" THANK YOU FOR USING SMART MART"
61 END
TO DOWNLOAD THIS PROGRAM CLICK HERE
TO DOWNLOAD THIS PROGRAM CLICK HERE
2. A program which gets a number from the user and then prints its table in the given range:
Syntax:
10 CLS
20 K=1
30 INPUT"ENTER THE NUMBER ",A
40 PRINT
50 INPUT"ENTER THE RANGE ",R
60 CLS
70 PRINT
80 FOR I=1 TO R
90 Z=A*I
100 PRINT
110 PRINT A;"*";I;"=";Z
120 NEXT I
130 END
130 END
TO DOWNLOAD THIS PROGRAM CLICK HERE
3. A program which converts Temperature form F to C or C to F on user's choice:
Syntax:
10 CLS
20 INPUT" TO CONVERT TEMP. FROM C TO F ENTER 1, TO CONVERT FROM F TO C ENTER 2 ",A
30 ON A GOTO 40,50
40 INPUT"ENTER THE TEMPERATURE IN C ",C
41 F=(1.8*C)+32:GOTO 60
50 INPUT"ENTER THE TEMPERATURE IN F",F
51 C=(F-32)*5/9:GOTO 70
60 PRINT C;"C INTO F= ";F;"F"
61 END
70 PRINT F;"F INTO C= ";C;"C"
80 END
TO DOWNLOAD THIS PROGRAM CLICK HERE
4. A very attractive software called "SHOPWARE" for Shopkeepers
Download the .exe file from HERE(Win 7)
Instructions:
1. Extract the file"File.zip"
2. Copy the folder"SHOPWARE" to D: drive
3. Now open SHOPWARE folder in D: drive and then run Shopware
4. When the software runs, press CTRL+F10
5. Enjoy :-)
For Win XP click HERE to Download
Instructions:
1. Extract the downloaded folder
2. Open the Extracted folder and run SHOPWARE.exe
3. Enjoy :-)
how to store a table of an array
ReplyDeleteI did not understand ur question?
DeletePlese Help me
Deletehmm good job
ReplyDeleteThank you! ☺
Deletecan you help me with the progam of combination and permutation
ReplyDeleteWrite a program takes 10 numbers in an array and print them in reverse order
ReplyDelete