博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
作业6--超级无敌终结(冲刺二)
阅读量:6270 次
发布时间:2019-06-22

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

核心类
1 package com.example.ddd; 2  3 public class Core { 4     int a; 5     int b; 6     int c; 7     int d; 8     public Core(int a,int b,int c,int d) 9     {10         this.a=a;11         this.b=b;12         this.c=c;13         this.d=d;14     }15     public int calc()16     {17         if(c==0)18         {19             return a+b;20         }21         else if(c==1)22         {23             return a-b;24         }25         else if(c==2)26         {27             return a*b;28         }29         else if(c==3)30         {31             if(b==0)32             {33                 b++;34             }35             return a/b;36         }37         else38         {39             return jiecheng(d);40         }41     }42     public String toString()43     {44         String A=new String();45         String B=new String();46         if(a<0)47         {48             A="("+a+")";49         }50         else51         {52             A=a+"";53         }54         if(b<0)55         {56             B="("+b+")";57         }58         else59         {60             B=b+"";61         }62         if(c==0)63         {64             return A+"+"+B;65         }66         else if(c==1)67         {68             return A+"-"+B;69         }70         else if(c==2)71         {72             return A+"*"+B;73         }74         else if(c==3)75         {76             return A+"/"+B;77         }78         else79         {80             return d+"!";81         }82     }83 84     public int jiecheng(int x)85     {86         if(x==0 || x==1)87         {88             return 1;89         }90         else91         {92             return x*jiecheng(x-1);93         }94     }95 }
计算类
1 
8 9
13 14
20 21
22 23
27 28
34 35
42 43
44
45 46
53 54
55 56
59 60
66 67
72 73
79 80
85 86
87 88
91 92
98 99
104 105
111 112
117 118
119 120
123 124
130 131
136 137
143 144
149 150
151 152
155 156
162 163
168 169
175 176
181 182 183 184
187 188
194 195
200 201
207 208
213 214 215 216
220 221
227 228 229 230
233 234
240 241
246 247 248 249
252 253
259 260
265 266 267 268
271 272
278 279
284 285 286 287
290 291
297 298
303 304 305 306
313 314
317 318
324 325
332 333 334 335
界面
1 
2
3 4
DDD
5
Hello world!
6
Settings
7
选择皮肤
8 9
strings.xml

 

 

在许组长的带领下,实现了换肤功能,非常不易啊。

附上几张小组学习照片。

认真研究代码中

河蟹的讨论

其他组的组员竟然在学习操作系统!

遇到难题时的迷茫

虽然身在不同阵营,还是分享情报的好间谍~

 

转载于:https://www.cnblogs.com/zhanshenlianmeng/p/4544672.html

你可能感兴趣的文章
java的double类型如何精确到一位小数?
查看>>
看看国外的javascript题目,你能全部做对吗?
查看>>
ffmpeg 如何选择具有相同AVCodecID的编解码器 (AVCodec)
查看>>
真正解决 Windows 中 Chromium “缺少 Google API 密钥” 的问题
查看>>
Spring 之 AOP
查看>>
软件项目管理|期末复习(二)
查看>>
直接调用VS.net2005中的配置界面
查看>>
程序员的自我修养五Windows PE/COFF
查看>>
关于字符集,编码格式,大小端的简单总结
查看>>
js string 转 int Number()
查看>>
课堂练习:ex 4-20
查看>>
20155328 2016-2017-2 《Java程序设计》 第8周学习总结
查看>>
python操作redis--string
查看>>
echarts图表初始大小问题及echarts随窗口变化自适应
查看>>
Inherits、CodeFile、CodeBehind的区别
查看>>
创建一个SimpleDlg
查看>>
使用XML生成菜单
查看>>
udp,tcp对于socket的写法
查看>>
第二周个人赛
查看>>
推断Windows版本号新方法
查看>>