Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

Given two integers as user inputs that represent the number of drinks to buy and the number of bottles to restock, create a VendingMachine variable that performs the following operations: (in the C language please).

Given two integers as user inputs that represent the number of drinks to buy and the number of bottles to restock, create a
Vending Machine variable that performs the following operations:
• Purchases input number of drinks
.
Restocks input number of bottles
.
• Reports inventory
Vending Machine.h contains the struct definition and related function declarations. Vending Machine.c contains related function definitions.
A Vending Machine's initial inventory is 20 drinks.
Ex: If the input is:
5 2
the output is:
Inventory: 17 bottles
1 #include <stdio.h>
2
3 #include "Vending Machine.h"
4
5 int main() {
6
7
8
9
10 }
/* Type your code here. */
return 0;
Current file: main.c
File is marked as read only
1 #ifndef VENDING MACHINE_H
2 #define VENDING_MACHINE_H
3
typedef struct Vending Machine_struct {
5
int bottles;
6 Vending Machine;
7
8 Vending Machine InitVending Machine();
9 Vending Machine Purchase(int amount, Vending Machine vm);
10 Vending Machine Restock(int amount, Vending Machine vm);
11 int Get Inventory (Vending Machine vm);
12 void Report (Vending Machine vm);
13
14 #endif
File is marked as read only
1 #include <stdio.h>
2 #include <string.h>
3
9
4 #include "Vending Machine.h"
5
6 Vending Machine InitVending Machine () {
7
Vending Machine newVM;
8
10
11
newVM.bottles = 20;
22
23
return newVM;
Current file Vending Machine.h
12}
13
14 Vending Machine Purchase(int amount, Vending Machine vm){
vm.bottles = vm.bottles - amount;
15
16
17
18 }
19
20 Vending Machine Restock(int amount, Vending Machine vm) {
vm.bottles = vm.bottles + amount;
21
return vm;
return vm;
Current file: Vending Machine.c
28 }
29
30 void Report (Vending Machine vm){
31
32 }
24 }
25
26 int GetInventory (Vending Machine vm) {
27
return vm.bottles;
printf("Inventory: %d bottles\n", vm.bottles);
expand button
Transcribed Image Text:Given two integers as user inputs that represent the number of drinks to buy and the number of bottles to restock, create a Vending Machine variable that performs the following operations: • Purchases input number of drinks . Restocks input number of bottles . • Reports inventory Vending Machine.h contains the struct definition and related function declarations. Vending Machine.c contains related function definitions. A Vending Machine's initial inventory is 20 drinks. Ex: If the input is: 5 2 the output is: Inventory: 17 bottles 1 #include <stdio.h> 2 3 #include "Vending Machine.h" 4 5 int main() { 6 7 8 9 10 } /* Type your code here. */ return 0; Current file: main.c File is marked as read only 1 #ifndef VENDING MACHINE_H 2 #define VENDING_MACHINE_H 3 typedef struct Vending Machine_struct { 5 int bottles; 6 Vending Machine; 7 8 Vending Machine InitVending Machine(); 9 Vending Machine Purchase(int amount, Vending Machine vm); 10 Vending Machine Restock(int amount, Vending Machine vm); 11 int Get Inventory (Vending Machine vm); 12 void Report (Vending Machine vm); 13 14 #endif File is marked as read only 1 #include <stdio.h> 2 #include <string.h> 3 9 4 #include "Vending Machine.h" 5 6 Vending Machine InitVending Machine () { 7 Vending Machine newVM; 8 10 11 newVM.bottles = 20; 22 23 return newVM; Current file Vending Machine.h 12} 13 14 Vending Machine Purchase(int amount, Vending Machine vm){ vm.bottles = vm.bottles - amount; 15 16 17 18 } 19 20 Vending Machine Restock(int amount, Vending Machine vm) { vm.bottles = vm.bottles + amount; 21 return vm; return vm; Current file: Vending Machine.c 28 } 29 30 void Report (Vending Machine vm){ 31 32 } 24 } 25 26 int GetInventory (Vending Machine vm) { 27 return vm.bottles; printf("Inventory: %d bottles\n", vm.bottles);
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education