博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
超市购物小票案例
阅读量:6822 次
发布时间:2019-06-26

本文共 3503 字,大约阅读时间需要 11 分钟。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
//定义商品类,包含名称,货号,单价,数量计价单位,金额
 
public 
class 
GoodsItem{
    
private 
String name;
    
private 
String id;
    
private 
int 
number;
    
private 
String unit;
    
private 
double 
money;
    
//构造方法
    
public 
GoodsItem(){}
    
GoodItem(String name,String id,
double 
price
            
,
int 
number,String unit,
double 
money){
        
this
.name = name ;
        
this
.id= id;
        
this
.price = price;
        
this
.number = number;
        
this
.money = money;
         
    
}
    
//get/set 方法
    
public 
String getName() {
        
return 
name;
    
}
    
public 
void 
setName(String name) {
        
this
.name = name;
    
}
    
public 
String getId() {
        
return 
id;
    
}
    
public 
void 
setId(String id) {
        
this
.id = id;
    
}
    
public 
double 
getPrice() {
        
return 
price;
    
}
    
public 
void 
setPrice(
double 
price) {
        
this
.price = price;
    
}
    
public 
int 
getNumber() {
        
return 
number;
    
}
    
public 
void 
setNumber(
int 
number) {
        
this
.number = number;
    
}
    
public 
double 
getMoney() {
        
return 
money;
    
}
    
public 
void 
setMoney(
double 
money) {
        
this
.money = money;
    
}
     
 
 
}
 
 
//实现主干逻辑,main方法.
import 
java.util.ArrayList;
import 
java.util.Scanner;
 
public 
class 
ShoppingReceipt {
    
static 
ArrayList<GoodItem>data = 
new 
ArrayList<GoodItem>();
 
    
public 
static 
void 
main(String[] args) {
        
// TODO Auto-generated method stub
         
          
         
System.out.println(
"欢迎使用超市管理系统"
);
         
initData();
          
    
}
 
    
private 
static 
void 
initData() {
        
// TODO Auto-generated method stub
        
GoodItem sls = 
new 
GoodItem(
"少林寺核桃"
,
"090115"
,
15.5
,
0
,
"个"
,
0
);
        
GoodItem shk = 
new 
GoodItem(
"尚康饼干"
"090027"
14.5
0
"个"
0
);
        
data.add(sls);
        
data.add(shk);
        
while
(
true
){
            
System.out.println(
"请输入你要进行的操作:1 输入购买数量 2 打印小票   3 退出"
);
            
Scanner sc = 
new 
Scanner(System.in);
            
int 
optNumber = sc.nextInt();
            
switch
(optNumber){
             
            
case 
1
:
                
enterNumber();
                
break
;
            
case 
2
:
                
printReceipt();
            
case 
3
:
                
System.out.println(
"欢迎下次光临"
);
                
System.exit(
0
);
            
default
:
                
System.out.println(
"请输入正确的数字!"
);
                
break
;
            
}
    
     
         
    
}
 
    
private 
static 
void 
printReceipt() {
        
// TODO Auto-generated method stub
        
System.out.println(
"欢迎光临"
);
        
System.out.println(
"品名  售价  数量   单位  金额"
);
        
System.out.println(
"-------------------"
);
        
int 
totalNumber =
0
;
        
double 
totalMoney =
0
;
        
for 
(
int 
i = 
0
; i < data.size(); i++) {
            
//依次获取每一个商品项
            
GoodItem g = data.get(i);
            
//打印商品项
            
System.out.println(
""
+g.getName()+g.getId()+
"  "
+g.getPrice()+
"  "
+g.getNumber()+
"  + "
+g.getMoney());
             
            
//累加数量与金额
            
totalNumber += g.getNumber();
            
totalMoney += g.getMoney();
        
}
        
System.out.println(
"-------------------------------------------"
);
        
//票脚
        
System.out.println(
"共"
+data.size()+
"项商品"
);
        
System.out.println(
"共"
+totalNumber+
"件商品"
);
        
System.out.println(
"共"
+totalMoney+
"元"
);
        
System.out.println();
}
 
     
 
    
private 
static 
void 
enterNumber() {
        
// TODO Auto-generated method stub
        
for
(
int 
i =
0
;i<data.size();i++){
            
GoodItem thisGoods = data.get(i);
            
String thisGoodsName = thisGoods.getName();
            
System.out.println(
"请输入"
+thisGoodsName+
"的购买数量"
);
             
            
Scanner sc = 
new 
Scanner(System.in);
             
             
            
int 
thisGoodsNumber =sc.nextInt();
             
            
double 
thisGoodsMoney = thisGoods.getPrice()*thisGoodsNumber;
            
thisGoods.setNumber(thisGoodsNumber);
            
thisGoods.setMoney(thisGoodsMoney);
             
        
}
    
}
 
}                          
 

本文转自xinsz08の平行时空博客51CTO博客,原文链接http://blog.51cto.com/xinsz08/1940339如需转载请自行联系原作者 

维度2018

你可能感兴趣的文章
Linux安装mysql5.7
查看>>
HIVE常用操作以及函数
查看>>
【优达学城测评】SQL 支持许的数据类型(3)
查看>>
PHP CURL CURLOPT参数说明(curl_setopt)
查看>>
Learning NodeJs(1)
查看>>
怎么解决mysql远程连接报10038的错误
查看>>
js 父窗口可以找到子窗口的元素
查看>>
从FB10.3升级到11.0后几个问题的解决
查看>>
Linux下使用pure-ftpd建立匿名ftp访问
查看>>
PhalApi:[1.11] 快速入门: 接口开发示例 源码 图文
查看>>
分享插件
查看>>
HTML 页面中Buton 按钮提交,一个很坑的问题
查看>>
kitchen测试salt-formulas
查看>>
拿Nginx 部署你的静态网页
查看>>
23种设计模式
查看>>
openstack命令整理
查看>>
Tomcat全攻略
查看>>
make: *** linux-2.6.36.4/arch/arm: Is a directo...
查看>>
android http连接阻塞超时问题
查看>>
异常处理
查看>>