核心类
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 }
18 9 151 15213 14 22 2320 21 27 28 55 5634 35 42 43 45 46 53 5444 59 60 87 8866 67 72 73 79 80 85 86 91 92 119 12098 99 104 105 111 112 117 118 123 124 130 131 136 137 143 144 149 150 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 23 4 DDD 5Hello world! 6Settings 7选择皮肤 8 9
在许组长的带领下,实现了换肤功能,非常不易啊。
附上几张小组学习照片。
认真研究代码中
河蟹的讨论
其他组的组员竟然在学习操作系统!
遇到难题时的迷茫
虽然身在不同阵营,还是分享情报的好间谍~