How can I have the FOR LOOP output what loop it is on..?....
I need my FOR LOOP to output which loop it is on so I can state which part number it is...
code: |
for counter : 1 .. n
put "", skip
put "PART", n %?? How can I do this?
put "What is the part number? " ..
get part (counter)
put "How many of this part were purchased? " ..
get quantity (counter)
put "What is the parts name? " ..
get pname (counter) : *
put "What is the Net price of this part? " ..
get netprice (counter)
put "What is the Unit price for this part? " ..
get price (counter)
end for
|
Can anyone help me out with this? Thanks.