91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用java怎么編寫一個超市管理系統

發布時間:2020-12-23 13:55:30 來源:億速云 閱讀:233 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關利用java怎么編寫一個超市管理系統,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

實現功能

使用選擇結構,循環結構,數組的知識實現一個超市管理系統

運行結果:貨物清單:

利用java怎么編寫一個超市管理系統

添加商品功能:

利用java怎么編寫一個超市管理系統

刪除商品功能:

利用java怎么編寫一個超市管理系統

修改商品:

利用java怎么編寫一個超市管理系統

商品貨物實體類

import java.util.Arrays;

public class Goods {
 private int id;
 private double price;
 private String name;

 public Goods(int id, double price, String name) {
  this.id = id;
  this.price = price;
  this.name = name;
 }

 public int getId() {
  return id;
 }

 public void setId(int id) {
  this.id = id;
 }

 public double getPrice() {
  return price;
 }

 public void setPrice(double price) {
  this.price = price;
 }

 public String getName() {
  return name;
 }

 public void setName(String name) {
  this.name = name;
 }

 public Goods() {
 }

 //增加商品
 public Goods[] add(Goods[]goods,Goods newGood){
  goods= Arrays.copyOf(goods,goods.length+1);
  goods[goods.length-1]=newGood;
  return goods;
 }
 //刪除商品
 public static Goods[] del(Goods[]goods,int id){
  int i=0;
  while(true){
   if(goods[i].getId()==id){
    goods[i]=null;
    return goods;
   }
   i++;
   if(i>=goods.length){
    return goods;
   }
  }

 }
 //添加商品
 public static Goods[] change(Goods[]goods,int id,int newId,double newPrice,String newName){
  int i=0;
  while (true){
   if(goods[i].getId()==id){
   goods[i].setId(newId);
   goods[i].setPrice(newPrice);
   goods[i].setName(newName);
   return goods;
  }
   i++;
   if(i>=goods.length){
    return goods;
   }
  }
 }
}

超市管理系統類

import java.util.Scanner;

public class marketManager {
 public static void main(String[] args) {
  Scanner sc = new Scanner(System.in);
  Goods g1=new Goods(1000,10,"筆記本");
  Goods g2=new Goods(1001,2,"西紅柿");
  Goods g3=new Goods(1002,5,"辣條");
  Goods []goods={g1,g2,g3};
  while (true) {
   System.out.println("========超市管理系統=======");
   System.out.println("1.貨物清單 2.增加商品 3.刪除商品 4.修改商品 5.退出");
   System.out.println("請輸入你要操作的編號:");
   int i = sc.nextInt();
   switch (i){
    case 1:
     System.out.println("=======商品清單=======");
     System.out.println("商品編號"+"\t\t"+"商品單價"+"\t\t"+"商品名稱");
     for (Goods a:goods) {
      if(a==null){
       continue;
      }
      System.out.println(a.getId()+"\t\t"+a.getPrice()+"\t\t"+a.getName());

     }
     continue;
    case 2:
     System.out.println("你選擇的是增加商品的功能");
     System.out.println("請輸入你要添加的編號:");
     int Id = sc.nextInt();
     System.out.println("請輸入你要添加的商品價格:");
     double price = sc.nextDouble();
     System.out.println("請輸入你要添加的商品名稱");
     String name = sc.next();
     Goods good=new Goods(Id,price,name);
     goods = good.add(goods, good);
     System.out.println("添加成功!");
     continue;
    case 3:
     System.err.println("你選擇的是刪除商品功能");
     System.out.println("請輸入你要操作的編號:");
     Id = sc.nextInt();
     goods=Goods.del(goods,Id);
     System.out.println("刪除成功!");
     continue;
    case 4:
     System.out.println("你選擇的是修改商品功能");
     System.out.println("請輸入你要操作的編號:");
     Id=sc.nextInt();
     System.out.println("請輸入修改后的編號:");
     int newId = sc.nextInt();
     System.out.println("請輸入修改后的價格:");
     double newPrice = sc.nextDouble();
     System.out.println("請輸入修改后的商品名稱:");
     String newName=sc.next();
     goods=Goods.change(goods,Id,newId,newPrice,newName);
     continue;
    case 5:
     return;
   }


  }
 }
}

以上就是利用java怎么編寫一個超市管理系統,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

淮阳县| 乃东县| 五家渠市| 巨鹿县| 华亭县| 定边县| 黄平县| 长顺县| 绥化市| 富平县| 婺源县| 昌宁县| 松原市| 烟台市| 琼结县| 喀什市| 洞头县| 嘉禾县| 皋兰县| 平遥县| 桐乡市| 额尔古纳市| 凤台县| 淄博市| 茂名市| 南江县| 石城县| 曲阜市| 龙井市| 渝北区| 塘沽区| 长岭县| 内黄县| 三原县| 高碑店市| 肇州县| 宣威市| 汕头市| 裕民县| 宜黄县| 仙游县|