I'm wanting to convert this part of the pseudo-code...
start
string name
string address
num item
num quantity
num price
num SIZE = 6
num VALID_ITEM = 106, 108, 307, 405, 457, 688
num VALID_ITEM_PRICE = 0.59, 0.99, 4.50, 15.99, 17.50, 39.00
num sub
string foundIt = “N”
string MSG_YES = “Item available”
string MSG_NO = “Item not found”
public class program
{
public static void main(string[] args)
{
String name ="";
String address ="";
int item;
int quantity;
double price;
int[] size = new int[6];
I'm not sure how to do this here... and it looks like the array needs to be searched, too ?? I don't understand what it wants from me now..VALID ITEM and VALID ITEM PRICE. Perhaps posting the entire pseudo code will help to clear things up:
start
string name
string address
num item
num quantity
num price
num SIZE = 6
num VALID_ITEM = 106, 108, 307, 405, 457, 688
num VALID_ITEM_PRICE = 0.59, 0.99, 4.50, 15.99, 17.50, 39.00
num sub
string foundIt = “N”
string MSG_YES = “Item available”
string MSG_NO = “Item not found”
get name, address, item, quantity
sub = 1
while sub <= SIZE
if item = VALID_ITEM [sub] then
foundIt = “Y”
price = VALID_ITEM_PRICE [sub]
endif
sub = sub + 1
endwhile
if foundIt = “Y” then
print MSG_YES
print quantity, “ at “ , price, “ each”
print “Total “, quantity * price
else
print MSG_NO
endif
stop