Question
Reference Book: Programming Logic and Design, Comprehensive (8th Edition) Joyce Farrell Heres assignment 1 to help with week 2 project: Frans Virtual Fruit Stand is
Reference Book: Programming Logic and Design, Comprehensive (8th Edition) "Joyce Farrell"
Heres assignment 1 to help with week 2 project:
Frans Virtual Fruit Stand is an online store that sells several types of dried fruit. Based on the needs of Frans Virtual Fruit stand, you must design a flowchart using Visual Logic. The flowchart must also be a fully functional program which follows the design requirements below.
Note: This program does not require the use of arrays. The program will prompt for data on a single item, process that data, display any relevant messages as described below, and then move on to the next item. Use the console option in the output command to display the output in a single window. Displaying the output can be accomplished with as few as three (3) variables that simply get overwritten each time the loop repeats.
Using Visual Logic, design a flowchart that is also a fully functional program. According to your design, the program must:
Continually accept data regarding the purchase of fruit until a sentinel value is entered.
Prompt the user for each item, and accept the name of the fruit (e.g., dried apples), the price per pound, and the number of pounds sold in a month.
Display a clear message for items that are considered:
Best-selling items Note: Best-selling items are identified as those that sell 5,000 or more pounds per month on average. For example, an acceptable message may read, Yellow raisins are a best-selling item.
Big-ticket items Note: Big-ticket items are identified as those that are best-selling items and also cost $4 per pound or more. For example, an acceptable message may read, Freeze-dried blueberries are a big-ticket item.
High-priced items Note:High-priced items are identified as those that sell for $7 per pound or more. For example, an acceptable message may read, Dried mangos are a high-priced item.
Lowest-selling items Note: Lowest-selling items are identified as those that sell 500 pounds or less per month on average. For example, an acceptable message may read, Dried Ugli Fruit is a lowest-selling item.
High-income generating items Note: High-income generating items are identified as those that generate $7,000 or more per month on average. To determine the income generated per item, multiply the price per pound by the number of pounds sold per month. If the item generates $7,000 or more per month, an acceptable message may read, Dried pineapple chunks are a high-income generating item.
Loop through all of the above steps until the user types the sentinel value when prompted. Display the sentinel value so that the user may ultimately be able to demonstrate an understanding of the way in which to end the program. Note: An acceptable message may read Type n to end the program., where n is the sentinel value.
Your Visual Logic program must follow these formatting requirements:
Be accomplished in a single Visual Logic program.
Be submitted as a single file with the .vls file extension.
Be fully functional in order to receive full credit.
The specific course learning outcomes associated with this assignment are:
Demonstrate the use of algorithms and pseudocoding to the problem-solving process.
Distinguish among the basic types, steps, and properties of programming.
Apply the techniques of functional decomposition, modularization techniques, and debugging strategies into program design.
Describe the features and fundamental data structures of programming design.
Select and create the appropriate conditional and iteration constructs for a given programming task.
PART 2 ASSIGNMENT DUE THIS WEEK BELOW:
Use the concepts and scenario from Assignment 1 to help Frans Virtual Fruit Stand increase the functionality of its online shopping cart. When a customer checks out, the shopping cart must store the required data pertaining to each item the customer is buying. Your job is to design a program that will prompt the user for the required data and then store it. The required data includes the item name, the price per pound, and the number of pounds of that item being purchased. When complete, your program should include three (3) arrays, two (2) loops, one (1) and / or conditional statement, and one (1) variable.
Using Visual Logic, design a flowchart that is also a fully functional program to add functionality to the online shopping cart. According to your design, the program must:
Continually accept data regarding the purchase of fruit as specified below until the user enters a sentinel value, or until five (5) items are entered, whichever comes first.
Prompt the user for each item and accept the name of the fruit (e.g., dried apples), the price per pound, and the number of pounds sold in a month.
Store the required data in three (3) arrays (e.g., one (1) for the item name, one (1) for the price per pound, and one (1) for the number of pounds being purchased) with corresponding index values. Note: For example, index value 3, when applied to the itemName array, would give us the name of the third item that the customer is buying. That same index value of 3, when applied to the pricePerPound array, would give us the price per pound of that same third item that the customer is buying.
Store up to five (5) values in each of the three (3) arrays.
Provide functionality in which the user ends the program by typing a sentinel value, and the program tells the user what the sentinel value is. Note: An acceptable message may read Type n to end the program., where n is the sentinel value. If the user does not end the program in this way, then the program ends when it has collected the data for five (5) items.
Print an itemized receipt with the following data after the last item in the purchase has been saved to the array.
Item name
Price per pound of each item
Number of pounds purchased of each item
Subtotal price for each item, calculated as price per pound multiplied by the number of pounds
Total weight of the entire order (in pounds)
The cost of shipping which is based on the total weight of the entire order, calculated as 50 cents per pound. Note: For example, if the entire order weighs seven (7) pounds, the cost of shipping would be $3.50.
Grand total price of all items and shipping.
Note: Use the console option in the output command to accomplish this task.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started