• 大小: 3KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: 其他
  • 标签: java  

资源简介

自制咖啡售卖系统包含零钱计算并输出计算结果仅供学习

资源截图

代码片段和文件信息

package CoffeeSale;
import java.util.Scanner;
abstract class Coffee{
private int CarNum=0;
protected int AllPrice=0;
//商品种类
private String coffee[][]={{“1““雀巢咖啡“}{“2““蓝山咖啡“}{“3““猫屎咖啡“}};
//商品对应价格
private int[] price={81215};
public abstract int coffeBuy();
public void setCarNum(int carNum) {
CarNum = carNum;
}
public int getCarNum() {//获取购物车商品数
return CarNum;
}
public void setAllPrice(int allPrice) {
AllPrice = allPrice;
}
public int getAllPrice() {//获取购物车总价
return AllPrice;
}
public void setCoffee(String coffee[][]) {//获取咖啡信息
this.coffee = coffee;
}
public String[][] getCoffee() {
return coffee;
}
public void setPrice(int[] price) {
this.price = price;
}
public int[] getPrice() {//获取咖啡价格
return price;
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1843  2017-12-24 19:53  CoffeeSale\CoffeeBuy.java
     文件         898  2017-12-24 19:53  CoffeeSale\SaleMain.java
     文件        3936  2017-12-24 19:53  CoffeeSale\giveMoney.java
     目录           0  2017-12-24 19:53  CoffeeSale\

评论

共有 条评论