66.9k views
5 votes
ShoppingBay is an online auction service that requires several reports. Data for each auctioned item includes an ID number, item description, length of auction in days, and minimum required bid. Design a flowchart or pseudocode for the following:

a. A program that accepts data for one auctioned item. Display data for an auction only if the minimum required bid is over $100.00.
b. A program that continuously accepts auction item data until a sentinel value is entered and displays all data for auctions in which the minimum required bid is over $100.00.
c. A program that continuously accepts auction item data and displays data for every auction in which there are no bids yet (in other words, the minimum bid is $0.00) and the length of the auction is one day or less.
d. A program that continuously accepts auction data and displays data for every auction in which the length is between 7 and 30 days inclusive.
e. A program that prompts the user for a maximum required bid, and then continuously accepts auction data and displays data for every auction in which the minimum bid is less than or equal to the amount entered by the user.

1 Answer

2 votes

Answer:

START

READ ID_Number

READ Item_description

READ length_of_auction_Days

READ minimum_required_bid

IF minimum_required_bid GREATER THAN 100

THEN

DISPLAY

Item Details are

Item Id : ID_Number

Item Description: Item_description

Length Action days: length_of_auction_Days

Minimum Required Bid: minimum_required_bid

END

Step-by-step explanation:

ShoppingBay is an online auction service that requires several reports. Data for each-example-1
User Pavlo Kyrylenko
by
5.4k points