Dim TotalPrice, Cash, TotalAmount, Change As Decimal
Dim selectItem, selectLoops, selectCompute As String
Console.WriteLine("Super Market")
Console.WriteLine("Select Items")
Console.WriteLine("1001 - item1 - P1.00")
Console.WriteLine("1002 - item2 - P2.00")
Console.WriteLine("1003 - item3 - P3.00")
Console.WriteLine("1004 - item4 - P4.00")
Console.WriteLine("1005 - item5 - P5.00")
Console.WriteLine("1006 - item6 - P6.00")
Console.WriteLine("1007 - item7 - P7.00")
Console.WriteLine("1008 - item8 - P8.00")
Console.WriteLine("1009 - item9 - P9.00")
Console.WriteLine("1010 - item10 - P10.00")
Console.WriteLine("1011 - item11 - P11.00")
Console.WriteLine("1012 - item12 - P12.00")
Console.WriteLine("1013 - item13 - P13.00")
Console.WriteLine("1014 - item14 - P14.00")
Console.WriteLine("1015 - item15 - P15.00")
Console.WriteLine("1016 - item16 - P16.00")
Console.WriteLine("1017 - item17 - P17.00")
Console.WriteLine("1018 - item18 - P18.00")
Console.WriteLine("1019 - item19 - P19.00")
Console.WriteLine("1020 - item20 - P20.00")
Console.WriteLine("1021 - item21 - P21.00")
Console.WriteLine("1022 - item22 - P22.00")
Console.WriteLine("1023 - item23 - P23.00")
Console.WriteLine("1024 - item24 - P24.00")
Console.WriteLine("1025 - item25 - P25.00")
Console.WriteLine("1026 - item26 - P26.00")
Console.WriteLine("1027 - item27 - P27.00")
Console.WriteLine("1028 - item28 - P28.00")
Console.WriteLine("1029 - item29 - P29.00")
Console.WriteLine("1030 - item30 - P30.00")
Console.WriteLine("1031 - item31 - P31.00")
Console.WriteLine("1032 - item32 - P32.00")
Console.WriteLine("1033 - item33 - P33.00")
Console.WriteLine("1034 - item34 - P34.00")
Console.WriteLine("1035 - item35 - P35.00")
Console.WriteLine("1036 - item36 - P36.00")
Console.WriteLine("1037 - item37 - P37.00")
Console.WriteLine("1038 - item38 - P38.00")
Console.WriteLine("1039 - item39 - P39.00")
Console.WriteLine("1040 - item40 - P40.00")
Console.WriteLine("1041 - item41 - p41.00")
Console.WriteLine("1042 - item42 - P42.00")
Console.WriteLine("1043 - item43 - P43.00")
Console.WriteLine("1044 - item44 - P44.00")
Console.WriteLine("1045 - item45 - P45.00")
Console.WriteLine("1046 - item46 - P46.00")
Console.WriteLine("1047 - item47 - P47.00")
Console.WriteLine("1048 - item48 - P48.00")
Console.WriteLine("1049 - item49 - P49.00")
Console.WriteLine("1050 - item50 - P50.00")
Console.WriteLine("1051 - item51 - P51.00")
Console.WriteLine("1052 - item52 - P52.00")
Console.WriteLine("1053 - item53 - p53.00")
Console.WriteLine("1054 - item54 - P54.00")
Console.WriteLine("1055 - item55 - P55.00")
Console.WriteLine("1056 - item56 - P56.00")
Console.WriteLine("1057 - item57 - P57.00")
Console.WriteLine("1058 - item58 - P58.00")
Console.WriteLine("1059 - item59 - P59.00")
Console.WriteLine("1060 - item60 - P60.00")
Console.WriteLine("1061 - item61 - P61.00")
Console.WriteLine("1062 - item62 - P62.00")
Console.WriteLine("1063 - item63 - P63.00")
Console.WriteLine("1064 - item64 - P64.00")
Console.WriteLine("1065 - item65 - P65.00")
Console.WriteLine("1066 - item66 - P66.00")
Console.WriteLine("1067 - item67 - P67.00")
Console.WriteLine("1068 - item68 - P68.00")
Console.WriteLine("1069 - item69 - P69.00")
Console.WriteLine("1070 - item70 - P70.00")
Console.WriteLine("1071 - item71 - P71.00")
Console.WriteLine("1072 - item72 - P72.00")
Console.WriteLine("1073 - item73 - P73.00")
Console.WriteLine("1074 - item74 - P74.00")
Console.WriteLine("1075 - item75 - P75.00")
Console.WriteLine("1076 - item76 - P76.00")
Console.WriteLine("1077 - item77 - P77.00")
Console.WriteLine("1078 - item78 - P78.00")
Console.WriteLine("1079 - item79 - p79.00")
Console.WriteLine("1080 - item80 - P80.00")
Console.WriteLine("1081 - item81 - P81.00")
Console.WriteLine("1082 - item82 - P82.00")
Console.WriteLine("1083 - item83 - P83.00")
Console.WriteLine("1084 - item84 - P84.00")
Console.WriteLine("1085 - item85 - P85.00")
Console.WriteLine("1086 - item86 - P86.00")
Console.WriteLine("1087 - item87 - P87.00")
Console.WriteLine("1088 - item88 - P88.00")
Console.WriteLine("1089 - item89 - P89.00")
Console.WriteLine("1090 - item90 - P90.00")
Console.WriteLine("1091 - item91 - P91.00")
Console.WriteLine("1092 - item92 - P92.00")
Console.WriteLine("1093 - item93 - P93.00")
Console.WriteLine("1094 - item94 - P94.00")
Console.WriteLine("1095 - item95 - P95.00")
Console.WriteLine("1096 - item96 - P96.00")
Console.WriteLine("1097 - item97 - P97.00")
Console.WriteLine("1098 - item98 - P98.00")
Console.WriteLine("1099 - item99 - P99.00")
Console.WriteLine("1100 - item100 -P100.0")
Console.Write("Select Item ID: ")
selectItem = Console.ReadLine
If selectItem = "1001" Then
Console.WriteLine("You select: item1 - P1.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 1.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1002" Then
Console.WriteLine("You select: item2 - P2.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 2.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1003" Then
Console.WriteLine("You select: item3 P3.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 3.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1004" Then
Console.WriteLine("You select: item4 - P4.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 4.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1005" Then
Console.WriteLine("You select: item5 - P5.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 5.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1006" Then
Console.WriteLine("You select: item6 - P6.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 6.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1007" Then
Console.WriteLine("You select: item7 - P7.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 7.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1008" Then
Console.WriteLine("You select: item8 - P8.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 8.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1009" Then
Console.WriteLine("You select: item9 - P9.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 9.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1010" Then
Console.WriteLine("You select: item10 - P10.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 10.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1011" Then
Console.WriteLine("You select: item11 - P11.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 11.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1012" Then
Console.WriteLine("You select: item12- P12.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 12.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1013" Then
Console.WriteLine("You select: item13 - P13.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 13.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1014" Then
Console.WriteLine("You select: item14 - P14.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 14.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1015" Then
Console.WriteLine("You select: item15 - P15.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 15.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1016" Then
Console.WriteLine("You select: item16 - P16.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 16.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1017" Then
Console.WriteLine("You select: item17 - P17.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 17.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1018" Then
Console.WriteLine("You select: item18 - P18.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 18.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1019" Then
Console.WriteLine("You select: item19 - P19.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 19.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1020" Then
Console.WriteLine("You select: item20 - P20.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 20.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1021" Then
Console.WriteLine("You select: item21 - P21.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 21.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1022" Then
Console.WriteLine("You select: item22 - P22.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 22.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1023" Then
Console.WriteLine("You select: item23 - P23.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 23.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1024" Then
Console.WriteLine("You select: item24- P24.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 24.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1025" Then
Console.WriteLine("You select: item25- P25.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 25.00
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1026" Then
Console.WriteLine("You select: item26- P26.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 26.00
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1027" Then
Console.WriteLine("You select: item27 - P27.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 27.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1028" Then
Console.WriteLine("You select: item28 - P28.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 28.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1029" Then
Console.WriteLine("You select: item29 - P29.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 29.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1030" Then
Console.WriteLine("You select: item30 P30.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 30.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1031" Then
Console.WriteLine("You select: item31- P31.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 31.00
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1032" Then
Console.WriteLine("You select: item32- P32.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 32.00
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1033" Then
Console.WriteLine("You select: item33- P33.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 33.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1034" Then
Console.WriteLine("You select: item34 - P34.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 34.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1035" Then
Console.WriteLine("You select: item35 - P35.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 35.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1036" Then
Console.WriteLine("You select: item36 - P36.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 36.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1037" Then
Console.WriteLine("You select: item37 - P37.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 37.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1038" Then
Console.WriteLine("You select: item38 - P38.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 38.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1039" Then
Console.WriteLine("You select: item39 - P39.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 39.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1040" Then
Console.WriteLine("You select: item40 - P40.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 40.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1041" Then
Console.WriteLine("You select: item41 - P41.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 41.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1042" Then
Console.WriteLine("You select: item42 - P42.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 42.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1043" Then
Console.WriteLine("You select: item43 - P43.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 43.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1044" Then
Console.WriteLine("You select: item44 - P44.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 44.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1045" Then
Console.WriteLine("You select: item45 - P45.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 45.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1046" Then
Console.WriteLine("You select: item46 - P46.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 46.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1047" Then
Console.WriteLine("You select: item47 - P47.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 47.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1048" Then
Console.WriteLine("You select: item48 - P48.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 48.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1049" Then
Console.WriteLine("You select: item49 - P49.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 49.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1050" Then
Console.WriteLine("You select: item50 - P50.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 50.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1051" Then
Console.WriteLine("You select: item51 P51.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 51.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1052" Then
Console.WriteLine("You select: item52 - P52.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 52.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1053" Then
Console.WriteLine("You select: item53 - P53.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 53.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1054" Then
Console.WriteLine("You select: item54 - P54.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 54.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1055" Then
Console.WriteLine("You select: item55 - P55.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 55.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1056" Then
Console.WriteLine("You select: item56 - P56.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 56.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1057" Then
Console.WriteLine("You select: item57 - P57.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 57.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1058" Then
Console.WriteLine("You select: item58 - P58.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 58.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1059" Then
Console.WriteLine("You select: item59 - P59.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 59.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1060" Then
Console.WriteLine("You select: item60 - P60.0p")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 60.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1061" Then
Console.WriteLine("You select: item61 - P61.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 61.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1062" Then
Console.WriteLine("You select: item62 - P62.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 62.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1063" Then
Console.WriteLine("You select: item63 - P63.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 63.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1064" Then
Console.WriteLine("You select: item64 - P64.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 64.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1065" Then
Console.WriteLine("You select: item65 - P65.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 65.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1066" Then
Console.WriteLine("You select: item66 - P66.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 66.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1067" Then
Console.WriteLine("You select: item67 - P67.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 67.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1068" Then
Console.WriteLine("You select: item68 - P68.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 68.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1069" Then
Console.WriteLine("You select: item69 - P69.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 69.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1070" Then
Console.WriteLine("You select: item70 - P70.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 70.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1071" Then
Console.WriteLine("You select: item71 - P71.0p")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 71.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1072" Then
Console.WriteLine("You select: item72 - P72.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 72.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1073" Then
Console.WriteLine("You select: item73 - P73.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 73.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1074" Then
Console.WriteLine("You select: item74 - P74.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 74.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1075" Then
Console.WriteLine("You select: item75 - P75.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 75.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1076" Then
Console.WriteLine("You select: item76 - P76.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 76.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1077" Then
Console.WriteLine("You select: item77 - P77.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 77.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1078" Then
Console.WriteLine("You select: item78 - P78.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 78.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1079" Then
Console.WriteLine("You select: item79 - P79.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 79.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1080" Then
Console.WriteLine("You select: item80 - P80.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 80.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1081" Then
Console.WriteLine("You select: item81 - P81.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 81.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1082" Then
Console.WriteLine("You select: item82 - P82.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 82.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1083" Then
Console.WriteLine("You select: item83 - P83.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 83.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1084" Then
Console.WriteLine("You select: item84 - P84.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 84.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1085" Then
Console.WriteLine("You select: item85 - P85.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 85.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1086" Then
Console.WriteLine("You select: item86 - P86.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 86.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1087" Then
Console.WriteLine("You select: item87 - P87.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 87.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1088" Then
Console.WriteLine("You select: item88 - P88.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 88.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1089" Then
Console.WriteLine("You select: item89 - P89.0")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 89.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1090" Then
Console.WriteLine("You select: item90 - P90.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 90.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1091" Then
Console.WriteLine("You select: item91- P2.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 2.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1092" Then
Console.WriteLine("You select: item92 - P3.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 3.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1093" Then
Console.WriteLine("You select: item93 - P5.99")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 5.99
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1094" Then
Console.WriteLine("You select: item94 - P30.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 30.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1095" Then
Console.WriteLine("You select: item95 - P25.99")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 25.99
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1096" Then
Console.WriteLine("You select: item96 - P40.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 40.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1097" Then
Console.WriteLine("You select: item97 - P5.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 5.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1098" Then
Console.WriteLine("You select: item98 - P15.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 15.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1099" Then
Console.WriteLine("You select: item99 - P4.00")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 4.0
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
ElseIf selectItem = "1100" Then
Console.WriteLine("You select: item100 - P7.50")
Console.Write("Quantity: ")
Quantity = Console.ReadLine
TotalPrice = Quantity * 7.5
Console.WriteLine("Total Price: P" & TotalPrice)
TotalAmount = TotalAmount + TotalPrice
Console.Write("Select Another Item (Y/N): ")
selectLoops = Console.ReadLine
Loop While selectLoops = "Y"
Console.Write("Compute all the Item (Y/N): ")
selectCompute = Console.ReadLine
If selectCompute = "Y" Then
Console.WriteLine("Total Amount: P" & TotalAmount)
Console.Write("Inpute Cash Rendered: P")
Change = Cash - TotalAmount
Console.WriteLine("Change: P" & Change)
Console.Write("Another Transaction(Y/N): ")
selectLoops = Console.ReadLine
Loop While selectLoops = "Y"