Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask C/C++ Expert


Home >> C/C++

Program in C language, use Microsoft Visual Studio the attachment has the program requirements and the text file has the grocery_list.txt with its price and quantity.

Grocery Store 

This program draws upon several concepts that were covered in CptS 121 and should serve as a good refresher for CptS 122. Our store, Cougar Mart, maintains its inventory in a text file. Not being very tech savvy, the owner of Cougar Mart needs you to build a C program (No C++) to read from and maintain the list of currently stocked items. The program will also simulate a simple shopping cart in which customers may add items. 

File Format 

Your program should read a file called "grocery_list.txt" (see included file for an example file). Each line of the file contains one grocery item. Each item contains three pieces of information: the name of the item, the item's quantity, and the item's cost. Each piece of information is separated by a colon (:). For example, "cheese:5:6" means that the item's name is "cheese", that there are 5 pieces of cheese in stock, and that each piece of cheese costs $6. Recall that one possible method for breaking up the information is to use strtok() (see http://www.cplusplus.com for more information). Alternatively, you can just manually track the location of the colons and make substrings as needed using a FOR loop.

Sample Output 

Below is the desired output of your program. Note that the number of items that I test will be different from the number of items listed in the sample output. As such, you will need to use a vector, similar to what was developed in class and in lab, to complete your assignment. 

Welcome to Cougar Mart! 
 
How much money do you have?: a 
Invalid input. Please try again 
 
How much money do you have?: 4 
 
Here's what we have in stock today: 
*** apples $1 (qty: 5) 
*** milk $2 (qty: 3) 
*** bread $1 (qty: 3) 
*** candy $1 (qty: 10) 
*** cheese $6 (qty: 5) 
*** oranges $2 (qty: 4) 
*** cherries $2 (qty: 3) 
 
You have $4 
What would you like to put into your cart: oranges 
Would you like to continue shopping? (y/n): y 
 
 
Here's what we have in stock today: 
*** apples $1 (qty: 5) 
*** milk $2 (qty: 3) 
*** bread $1 (qty: 3) 
*** candy $1 (qty: 10) 
*** cheese $6 (qty: 5)
*** oranges $2 (qty: 3) 
*** cherries $2 (qty: 3) 
 
You have $2 
What would you like to put into your cart: apples 
Would you like to continue shopping? (y/n): y 
 
 
Here's what we have in stock today: 
*** apples $1 (qty: 4) 
*** milk $2 (qty: 3) 
*** bread $1 (qty: 3) 
*** candy $1 (qty: 10) 
*** cheese $6 (qty: 5) 
*** oranges $2 (qty: 3) 
*** cherries $2 (qty: 3) 
 
You have $1 
What would you like to put into your cart: milk 
Sorry, you don't have enough money! 
Would you like to continue shopping? (y/n): y 
 
 
Here's what we have in stock today: 
*** apples $1 (qty: 4) 
*** milk $2 (qty: 3) 
*** bread $1 (qty: 3) 
*** candy $1 (qty: 10) 
*** cheese $6 (qty: 5) 
*** oranges $2 (qty: 3) 
*** cherries $2 (qty: 3) 
 
You have $1 
What would you like to put into your cart: butter 
Sorry, we're all out of butter today. 
Would you like to continue shopping? (y/n): y 
 
 
Here's what we have in stock today: 
*** apples $1 (qty: 4) 
*** milk $2 (qty: 3) 
*** bread $1 (qty: 3) 
*** candy $1 (qty: 10) 
*** cheese $6 (qty: 5) 
*** oranges $2 (qty: 3) 
*** cherries $2 (qty: 3) 
 
You have $1 
What would you like to put into your cart: candy 
Would you like to continue shopping? (y/n): n 
 
Here's what you've added to your shopping cart: 
* oranges 
* apples 
* candy 
You spent $4 and have $0 left over. 
Thank you, come again!
Program Flow 
Your program should operate in the following manner: 
Open the file "grocery_list.txt". 
Read the names and quantities of items from the text file. 
Prompt the user for the amount of money that they currently have. 
Until the shopper decides to exit, do the following: 
o Display a menu with the currently stocked items, their cost, and their quantities. 
o Ask the shopper what they'd like to add to their cart. 
o If the item exists and there is sufficient quantity, add the item to their cart. 
o If the item does not exist, let the user that the item is not in stock. 
o If the item costs more than what the users has, let the user know that they have insufficient funds to make the purchase. 
o Update the list of items currently in stock to reflect the new quantities. 
After the user has decided to exit, display the current contents of the shopping cart along with how much was spent and how much money the user has left over. 
Note that the program should also write back to "grocery_list.txt" with the updated quantity of items. 
grocery_list.txt file contains text
apples:5:1
milk:3:2
bread:3:1
candy:10:1
cheese:5:6
oranges:4:2
cherries:3:2

C/C++, Programming

  • Category:- C/C++
  • Reference No.:- M9285287
  • Price:- $40

Priced at Now at $40, Verified Solution

Have any Question?


Related Questions in C/C++

Project - space race part a console Project - Space Race Part A: Console Implementation

Project - Space Race Part A: Console Implementation INTRODUCTION This assignment aims to give you a real problem-solving experience, similar to what you might encounter in the workplace. You have been hired to complete a ...

What are the legal requirements with which websites must

What are the legal requirements with which websites must comply in order to meet the needs of persons with disabilities? Why is maximizing accessibility important to everyone?

Assignment word matchingwhats a six-letter word that has an

Assignment: Word Matching What's a six-letter word that has an e as its first, third, and fifth letter? Can you find an anagram of pine grave. Or how about a word that starts and ends with ant (other than ant itself, of ...

There are several ways to calculate the pulse width of a

There are several ways to calculate the pulse width of a digital input signal. One method is to directly read the input pin and another method (more efficient) is to use a timer and pin change interrupt. Function startTi ...

1 implement the binary search tree bst in c using the node

1. Implement the Binary Search Tree (BST) in C++, using the Node class template provided below. Please read the provided helper methods in class BST, especially for deleteValue(), make sure you get a fully understanding ...

Software development fundamentals assignment 1 -details amp

Software Development Fundamentals Assignment 1 - Details & Problems - In this assignment, you are required to answer the short questions, identify error in the code, give output of the code and develop three C# Console P ...

Question 1find the minimum and maximum of a list of numbers

Question: 1. Find the Minimum and Maximum of a List of Numbers: 10 points File: find_min_max.cpp Write a program that reads some number of integers from the user and finds the minimum and maximum numbers in this list. Th ...

Assign ment - genetic algorithmin this assignment you will

ASSIGN MENT - GENETIC ALGORITHM In this assignment, you will use your C programming skills to build a simple Genetic Algorithm. DESCRIPTION OF THE PROGRAM - CORE REQUIREMENTS - REQ1: Command-line arguments The user of yo ...

Why do researcher drop the ewaste and where does it end

Why do researcher drop the ewaste and where does it end up?

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As