为某商店的商品设计合适的结构体(PRODUCT)。每一种商品包含:编号(number)名称(name)、价格(price)、折扣(discount)4项信息,为这些信息选择合适的数据类型。
时间: 2023-03-30 13:02:32 浏览: 202
可以使用以下结构体来设计商品的信息:
typedef struct {
int number; // 商品编号
char name[50]; // 商品名称
float price; // 商品价格
float discount; // 商品折扣
} PRODUCT;
其中,编号可以使用整型(int)来表示,名称可以使用字符数组(char[])来表示,价格和折扣可以使用浮点型(float)来表示。这样,每个商品的信息就可以用一个PRODUCT类型的变量来表示。
相关问题
用JS实现一个简易的自动售货系统生成一个网页,售货柜中有若干种商品,每种商品有名称(name)、价格(price),库存(stock)三个属性。实现以下功能。 。售货柜可以列出当前的所有商品,每种商品显示各自的名称,库存和价格。。给售货柜补货,即给指定名称的商品添加一定数量的库存。●销售商品,给定商品的名称和数量以及顾客预支配金额,判断金额是否足够,若不够则 进行提醒,若足够则减库存并找零。提示 创建两个类,一个是售货柜类(SellingMachine),另一个是商品类(Product)。
好的,以下是用JS实现的简易自动售货系统生成网页的代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>自动售货系统</title>
</head>
<body>
<h1>欢迎使用自动售货系统</h1>
<div id="product-list"></div>
<div>
<h2>补货</h2>
<label>商品名称:</label>
<input type="text" id="restock-name" />
<label>补货数量:</label>
<input type="number" id="restock-amount" />
<button onclick="restock()">补货</button>
</div>
<div>
<h2>销售</h2>
<label>商品名称:</label>
<input type="text" id="sell-name" />
<label>购买数量:</label>
<input type="number" id="sell-amount" />
<br />
<label>预支金额:</label>
<input type="number" id="payment" />
<button onclick="sell()">购买</button>
</div>
<script>
class Product {
constructor(name, price, stock) {
this.name = name;
this.price = price;
this.stock = stock;
}
}
class SellingMachine {
constructor() {
this.products = [];
}
addProduct(product) {
this.products.push(product);
}
listProducts() {
const productList = document.getElementById("product-list");
productList.innerHTML = "<h2>商品清单</h2>";
this.products.forEach((product) => {
const item = document.createElement("div");
item.innerHTML = `${product.name} - 库存:${product.stock} - 价格:${product.price} 元`;
productList.appendChild(item);
});
}
restockProduct(name, amount) {
const product = this.products.find((product) => product.name === name);
if (product) {
product.stock += amount;
console.log(`${name} 已加入 ${amount} 件库存。`);
this.listProducts();
} else {
console.log(`未找到名称为 ${name} 的商品。`);
}
}
sellProduct(name, amount, payment) {
const product = this.products.find((product) => product.name === name);
if (product) {
if (product.stock < amount) {
alert(`${name} 库存不足。`);
} else if (product.price * amount > payment) {
alert(`金额不足,购买 ${name} ${amount} 件需要 ${product.price * amount} 元。`);
} else {
product.stock -= amount;
const change = payment - product.price * amount;
alert(`购买 ${name} ${amount} 件成功,找零 ${change} 元。`);
this.listProducts();
}
} else {
alert(`未找到名称为 ${name} 的商品。`);
}
}
}
// 创建售货柜并添加商品
const machine = new SellingMachine();
const coke = new Product("可口可乐", 3, 10);
const sprite = new Product("雪碧", 2.5, 5);
const chips = new Product("薯片", 5, 3);
machine.addProduct(coke);
machine.addProduct(sprite);
machine.addProduct(chips);
// 列出所有商品
machine.listProducts();
// 补货
function restock() {
const name = document.getElementById("restock-name").value;
const amount = parseInt(document.getElementById("restock-amount").value);
machine.restockProduct(name, amount);
}
// 销售
function sell() {
const name = document.getElementById("sell-name").value;
const amount = parseInt(document.getElementById("sell-amount").value);
const payment = parseInt(document.getElementById("payment").value);
machine.sellProduct(name, amount, payment);
}
</script>
</body>
</html>
```
上面的代码中,我们在HTML中添加了三个`div`元素,分别用于显示商品清单、补货和销售。在JS中,我们同样定义了`Product`和`SellingMachine`两个类,但是在`listProducts`、`restockProduct`和`sellProduct`方法中,我们使用了DOM操作,动态更新了网页中的元素。最后,我们添加了一个简单的测试,用户可以在网页上进行补货和销售操作。
C语言有一个售货柜员机,内有多种商品供人购买(商品种类不超过100个),每种商品有 名称、数量、价等信息。编程完成n种商品信息的输入输出。
以下是一个简单的实现,可以让用户输入商品的名称、数量和价格,并将其保存在一个结构体数组中。然后,程序会输出所有商品的信息。
```c
#include <stdio.h>
#include <string.h>
#define MAX_PRODUCTS 100
struct product {
char name[50];
int quantity;
float price;
};
int main() {
struct product products[MAX_PRODUCTS];
int num_products;
printf("Enter number of products: ");
scanf("%d", &num_products);
for (int i = 0; i < num_products; i++) {
printf("\nEnter details of product %d:\n", i+1);
printf("Name: ");
scanf("%s", products[i].name);
printf("Quantity: ");
scanf("%d", &products[i].quantity);
printf("Price: ");
scanf("%f", &products[i].price);
}
printf("\nProduct Details:\n");
for (int i = 0; i < num_products; i++) {
printf("%d. %s - %d units - $%.2f\n", i+1, products[i].name, products[i].quantity, products[i].price);
}
return 0;
}
```
在该示例中,我们定义了一个结构体类型 `struct product`,其中包含了商品的名称、数量和价格。我们使用 `MAX_PRODUCTS` 常量定义了最大商品数量,然后定义了一个 `products` 数组来保存所有的商品信息。
程序首先会询问用户输入商品数量,然后使用 `for` 循环让用户输入每个商品的详细信息。最后,程序会输出所有商品的信息。
阅读全文