MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / input

Method input

Lab_21/e-commerce.cpp:92–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90 }
91
92 void input() {
93 Item::input();
94 cout << "Enter the price of a new product: ";
95 cin >> price;
96 cout << "Enter the quantity of a new product: ";
97 cin >> quantity;
98 }
99
100 void set_quantity(int quantity) {
101 this->quantity = quantity;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected