Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

For the following write it in correct pseudocode (not actual C program code): Th

ID: 3770031 • Letter: F

Question

For the following write it in correct pseudocode (not actual C program code):

The ACME Company has approached you with a request to develop the psuedocode that will control the operations of their new series of vending machines. The program will be required to maintain the product inventory and money reservoir. The program should do the following operations:
1. Take as input an item number and money (The program terminates when a user enters a negative money amount and “000” as an item number.)
2. Check to see if the item exists. (if it doesn’t give the user a chance to re-enter the number)
3. Check to see if the money is sufficient enough to pay for item. (If not request more money)
4. Check to see if item is in stock. (If not user should be notified with the choice of selecting new item or cancelling the order)
5. If the item is in stock and the money is sufficient, the program should provide change and update the money reservoir and product inventory.
6. When the dispensing change, the program must insure that it always returns the correct amount of change based on the coins available in the reservoir. For example, if a user is owed $0.30 then the program may return 1 quarter and 1 nickel. However, if there are no quarters, the program should be smart enough to return a different combination of that doesn’t include quarters. (If no combination of change exists, the user’s order should be cancelled and the user should be allowed to make an alternate selection)
7. Once a transaction is complete, the user should be prompted to make a new selection. The program will end when a user enters a negative money amount and “000” for the item number.
Product Inventory:
Below is a breakdown of the products offered by the vending machine. In addition to the product names, the prices, item number and quantities are also listed below. The user will use the item number to select the product they wish to purchase.
Product Name Item Number Price Quantity in Stock
Candy Bar 123 $0.60 60
Gum 124 $0.35 75
Potato Chips 125 $0.75 40
Trail Mix 126 $.050 50
Breakfast Bar 127 $0.80 45

Explanation / Answer

As per your request i given algorithm using structs

//we declare structure to hold the records data
struct Items{
char title[50];
float availableprice;
float price;
};

//checking for item exists or not
void checkItemExists(struct Items record[], char title[],float price, int size){
int i,stock = 10;
for(i=0;i<size;i++){
if(record[i].title == title){ //checking for title
print("Exits");
return;
}
}
print("not exists");
}
int main(){
int temp = 0;
//declaring array of records to store structure
struct Items record[100];
//reading new item details from user
print("NEter tile");
scanf("%s",record[temp].title);
printf("Enter price left with you: ");
scanf("%f",&record[temp].availableprice);
printf("Enter price: ");
scanf("%f",&record[temp].price);

stock--;
//for stock we will maintain variable
if(stock > 0){
print ("stock available");
}
//checking price available price to buy is avialable or not
if(record[temp].availableprice > record[temp].price){
print(' money is sufficent');
print('change: =%f',(record[temp].availableprice - record[temp].price ));
record[temp].availableprice = record[temp].availableprice - record[temp].price
}
else{
print(' money is not sufficent to purchase');
}
return 0;
}