作业6--再次终结(冲刺三)

  1 package com.example.zs;
  2
  3 import java.util.*;
  4
  5 import android.support.v7.app.ActionBarActivity;
  6 import android.support.v7.app.ActionBar;
  7 import android.support.v4.app.Fragment;
  8 import android.os.Bundle;
  9 import android.view.LayoutInflater;
 10 import android.view.Menu;
 11 import android.view.MenuItem;
 12 import android.view.View;
 13 import android.view.View.OnClickListener;
 14 import android.view.ViewGroup;
 15 import android.widget.*;
 16 import android.widget.AdapterView.OnItemSelectedListener;
 17 import android.os.Build;
 18
 19 public class MainActivity extends ActionBarActivity {
 20
 21     private Button b1,b2,b3;
 22     private LinearLayout l1;
 23     private Spinner sp1;
 24     private TextView[]T=new TextView[9];
 25     private EditText[]E=new EditText[6];
 26     int i,k,n;
 27     long begintime,endtime,time;
 28     int[]a=new int[5];
 29     int[]b=new int[5];
 30     int[]c=new int[5];
 31     int[]d=new int[5];
 32     float[]answer=new float[5];
 33     List<String>list=new ArrayList<String>();
 34
 35     @Override
 36     protected void onCreate(Bundle savedInstanceState)
 37   {
 38         super.onCreate(savedInstanceState);
 39         setContentView(R.layout.activity_main);
 40
 41         b1=(Button)findViewById(R.id.button1);
 42         b2=(Button)findViewById(R.id.button2);
 43         b3=(Button)findViewById(R.id.button3);
 44         l1=(LinearLayout)findViewById(R.id.container);
 45         T[0]=(TextView)findViewById(R.id.textView4);
 46         T[1]=(TextView)findViewById(R.id.textView6);
 47         T[2]=(TextView)findViewById(R.id.textView9);
 48         T[3]=(TextView)findViewById(R.id.textView12);
 49         T[4]=(TextView)findViewById(R.id.textView15);
 50         T[5]=(TextView)findViewById(R.id.textView18);
 51         T[6]=(TextView)findViewById(R.id.textView20);
 52         T[7]=(TextView)findViewById(R.id.textView22);
 53         T[8]=(TextView)findViewById(R.id.textView24);
 54         E[0]=(EditText)findViewById(R.id.editText2);
 55         E[1]=(EditText)findViewById(R.id.editText3);
 56         E[2]=(EditText)findViewById(R.id.editText4);
 57         E[3]=(EditText)findViewById(R.id.editText5);
 58         E[4]=(EditText)findViewById(R.id.editText6);
 59         E[5]=(EditText)findViewById(R.id.editText1);
 60         sp1=(Spinner)findViewById(R.id.spinner1);
 61         list.add("默认");
 62         list.add("勤劳的宿舍长");
 63         list.add("飞奔的宿舍长");
 64         list.add("下海的宿舍长");
 65         list.add("发情期的宿舍长");
 66         list.add("遭袭的宿舍长");
 67         list.add("变身后的宿舍长");
 68         ArrayAdapter<String> adapter;
 69         adapter=new ArrayAdapter<String>(this,android.R.layout.simple_spinner_item,list);
 70         adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
 71         sp1.setAdapter(adapter);
 72
 73         b1.setOnClickListener(new OnClickListener()
 74     {
 75
 76             @Override
 77         public void onClick(View v)
 78         {
 79                 // TODO Auto-generated method stub
 80             try
 81             {
 82                 for(k=0;k<5;k++)
 83                 {
 84                     T[k].setText(null);
 85                 }
 86                 for(k=0;k<5;k++)
 87                 {
 88                     E[k].setText(null);
 89                 }
 90                 T[5].setText(null);
 91                 T[6].setText(null);
 92                 T[7].setText(null);
 93                 T[8].setText(null);
 94                 i=0;
 95                 if(E[5].getText().length()==0)
 96                 {
 97                     Toast.makeText(MainActivity.this, "请输入题数", 1).show();
 98                 }
 99                 else if(Integer.parseInt(E[5].getText()+"")>5 || Integer.parseInt(E[5].getText()+"")<1)
100                 {
101                     Toast.makeText(MainActivity.this, "题数最多不超过5题,不少于1题", 1).show();
102                 }
103                 else
104                 {
105                     i=Integer.parseInt(E[5].getText()+"");
106
107                     for(k=0;k<i;k++)
108                     {
109                         a[k]=(int)(Math.random()*201-100);
110                         b[k]=(int)(Math.random()*201-100);
111                         c[k]=(int)(Math.random()*5);
112                         d[k]=(int)(Math.random()*12+1);
113                         Core core=new Core(a[k],b[k],c[k],d[k]);
114                         answer[k]=core.calc();
115                         T[k].setText(core.toString());
116
117                     }
118                     begintime = System.currentTimeMillis();
119                 }
120             }catch(NumberFormatException u)
121             {
122                 Toast.makeText(MainActivity.this, "请输入正确的数字", 1).show();
123             }
124         }
125     });
126
127         b2.setOnClickListener(new OnClickListener() {
128
129             @Override
130             public void onClick(View v) {
131                 // TODO Auto-generated method stub
132                 if(i==0)
133                 {
134                     Toast.makeText(MainActivity.this, "请先开始答题", 1).show();
135                 }
136                 else
137                 {
138                     endtime = System.currentTimeMillis();
139                     time=(endtime-begintime)/1000;
140                     n=0;
141                     for(k=0;k<i;k++)
142                     {
143                         if(E[k].getText().length()==0)
144                         {
145                             continue;
146                         }
147                         try
148                         {
149                             if(answer[k]==Float.parseFloat(E[k].getText()+""))
150                             {
151                                 n++;
152                             }
153                         }catch(NumberFormatException u)
154                         {
155                             Toast.makeText(MainActivity.this, "请输入正确的数字", 1).show();
156                         }
157
158                     }
159                     T[5].setText(n+"道题");
160                     T[6].setText((i-n)+"道题");
161                     T[7].setText(time+"秒");
162                     T[8].setText("");
163                     for(k=0;k<i;k++)
164                     {
165                         T[8].setText(T[8].getText()+""+answer[k]+";");
166                     }
167                     i=0;
168                 }
169             }
170         });
171
172         b3.setOnClickListener(new OnClickListener() {
173
174             @Override
175             public void onClick(View v) {
176                 // TODO Auto-generated method stub
177                 for(k=0;k<5;k++)
178                 {
179                     T[k].setText(null);
180                 }
181                 for(k=0;k<5;k++)
182                 {
183                     E[k].setText(null);
184                 }
185                 E[5].setText(null);
186                 T[5].setText(null);
187                 T[6].setText(null);
188                 T[7].setText(null);
189                 T[8].setText(null);
190                 i=0;
191             }
192         });
193
194         sp1.setOnItemSelectedListener(new OnItemSelectedListener() {
195             @Override
196             public void onItemSelected(AdapterView<?> parent, View view, int pos, long id)
197             {
198                 if(pos==0)
199                     l1.setBackgroundResource(R.drawable.ss2);
200                 if(pos==1)
201                     l1.setBackgroundResource(R.drawable.ss3);
202                 if(pos==2)
203                     l1.setBackgroundResource(R.drawable.ss4);
204                 if(pos==3)
205                     l1.setBackgroundResource(R.drawable.ss5);
206                 if(pos==4)
207                     l1.setBackgroundResource(R.drawable.ss6);
208                 if(pos==5)
209                     l1.setBackgroundResource(R.drawable.ss7);
210                 if(pos==6)
211                     l1.setBackgroundResource(R.drawable.ss8);
212             }
213             @Override
214             public void onNothingSelected(AdapterView<?> parent)
215             {
216                 // Another interface callback
217             }
218         });
219   }
220
221
222     @Override
223     public boolean onCreateOptionsMenu(Menu menu) {
224
225         // Inflate the menu; this adds items to the action bar if it is present.
226         getMenuInflater().inflate(R.menu.main, menu);
227         return true;
228     }
229
230     @Override
231     public boolean onOptionsItemSelected(MenuItem item) {
232         // Handle action bar item clicks here. The action bar will
233         // automatically handle clicks on the Home/Up button, so long
234         // as you specify a parent activity in AndroidManifest.xml.
235         int id = item.getItemId();
236         if (id == R.id.action_settings) {
237             return true;
238         }
239         return super.onOptionsItemSelected(item);
240     }
241
242     /**
243      * A placeholder fragment containing a simple view.
244      */
245     public static class PlaceholderFragment extends Fragment {
246
247         public PlaceholderFragment() {
248         }
249
250         @Override
251         public View onCreateView(LayoutInflater inflater, ViewGroup container,
252                 Bundle savedInstanceState) {
253             View rootView = inflater.inflate(R.layout.fragment_main, container, false);
254             return rootView;
255         }
256     }
257
258 }

main类

 1 package com.example.zs;
 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 float 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 (float)Math.round(((float)a/b)*100)/100;
36         }
37         else
38         {
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         else
51         {
52             A=a+"";
53         }
54         if(b<0)
55         {
56             B="("+b+")";
57         }
58         else
59         {
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         else
79         {
80             return d+"!";
81         }
82     }
83
84     public float jiecheng(int x)
85     {
86         if(x==0 || x==1)
87         {
88             return 1;
89         }
90         else
91         {
92             return x*jiecheng(x-1);
93         }
94     }
95 }

计算核心类

  1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2     xmlns:tools="http://schemas.android.com/tools"
  3     android:id="@+id/container"
  4     android:layout_width="match_parent"
  5     android:layout_height="match_parent"
  6     android:orientation="vertical"
  7     android:background="@drawable/ss2" >
  8
  9     <LinearLayout
 10         android:layout_width="match_parent"
 11         android:layout_height="wrap_content"
 12         android:gravity="center" >
 13
 14         <TextView
 15             android:id="@+id/textView1"
 16             android:layout_width="wrap_content"
 17             android:layout_height="wrap_content"
 18             android:text="欢迎您,尊敬的用户"
 19             android:textSize="20sp" />
 20
 21     </LinearLayout>
 22
 23     <LinearLayout
 24         android:layout_width="match_parent"
 25         android:layout_height="wrap_content"
 26         android:gravity="center" >
 27
 28         <TextView
 29             android:id="@+id/textView2"
 30             android:layout_width="wrap_content"
 31             android:layout_height="wrap_content"
 32             android:text="请输入题数:"
 33             android:textSize="20sp" />
 34
 35         <EditText
 36             android:id="@+id/editText1"
 37             android:hint="不超过5题"
 38             android:layout_width="100dp"
 39             android:layout_height="wrap_content"
 40             android:textSize="15sp"
 41              >
 42
 43             <requestFocus />
 44         </EditText>
 45
 46         <Button
 47             android:id="@+id/button1"
 48             android:layout_width="wrap_content"
 49             android:layout_height="34dp"
 50             android:text="开始答题"
 51             android:textSize="15sp"
 52             android:textColor="#ee7755" />
 53
 54     </LinearLayout>
 55
 56     <LinearLayout
 57         android:layout_width="match_parent"
 58         android:layout_height="wrap_content" >
 59
 60         <TextView
 61             android:id="@+id/textView3"
 62             android:layout_width="wrap_content"
 63             android:layout_height="wrap_content"
 64             android:text="第一题:"
 65             android:textSize="20sp" />
 66
 67         <TextView
 68             android:id="@+id/textView4"
 69             android:layout_width="110dp"
 70             android:layout_height="wrap_content"
 71             android:textSize="20sp" />
 72
 73         <TextView
 74             android:id="@+id/textView5"
 75             android:layout_width="wrap_content"
 76             android:layout_height="wrap_content"
 77             android:text=" = "
 78             android:textSize="25sp" />
 79
 80         <EditText
 81             android:id="@+id/editText2"
 82             android:layout_width="70dp"
 83             android:layout_height="wrap_content"
 84             android:textSize="15sp" />
 85
 86     </LinearLayout>
 87
 88     <LinearLayout
 89         android:layout_width="match_parent"
 90         android:layout_height="wrap_content" >
 91
 92         <TextView
 93             android:id="@+id/textView25"
 94             android:layout_width="wrap_content"
 95             android:layout_height="wrap_content"
 96             android:text="第二题:"
 97             android:textSize="20sp" />
 98
 99         <TextView
100             android:id="@+id/textView6"
101             android:layout_width="110dp"
102             android:layout_height="wrap_content"
103             android:textSize="20sp" />
104
105         <TextView
106             android:id="@+id/textView7"
107             android:layout_width="wrap_content"
108             android:layout_height="wrap_content"
109             android:text=" = "
110             android:textSize="25sp" />
111
112         <EditText
113             android:id="@+id/editText3"
114             android:layout_width="70dp"
115             android:layout_height="wrap_content"
116             android:textSize="15sp" />
117
118     </LinearLayout>
119
120     <LinearLayout
121         android:layout_width="match_parent"
122         android:layout_height="wrap_content" >
123
124         <TextView
125             android:id="@+id/textView8"
126             android:layout_width="wrap_content"
127             android:layout_height="wrap_content"
128             android:text="第三题:"
129             android:textSize="20sp" />
130
131         <TextView
132             android:id="@+id/textView9"
133             android:layout_width="110dp"
134             android:layout_height="wrap_content"
135             android:textSize="20sp" />
136
137         <TextView
138             android:id="@+id/textView10"
139             android:layout_width="wrap_content"
140             android:layout_height="wrap_content"
141             android:text=" = "
142             android:textSize="25sp" />
143
144         <EditText
145             android:id="@+id/editText4"
146             android:layout_width="70dp"
147             android:layout_height="wrap_content"
148             android:textSize="15sp" />
149
150     </LinearLayout>
151
152     <LinearLayout
153         android:layout_width="match_parent"
154         android:layout_height="wrap_content" >
155
156         <TextView
157             android:id="@+id/textView11"
158             android:layout_width="wrap_content"
159             android:layout_height="wrap_content"
160             android:text="第四题:"
161             android:textSize="20sp" />
162
163         <TextView
164             android:id="@+id/textView12"
165             android:layout_width="110dp"
166             android:layout_height="wrap_content"
167             android:textSize="20sp" />
168
169         <TextView
170             android:id="@+id/textView13"
171             android:layout_width="wrap_content"
172             android:layout_height="wrap_content"
173             android:text=" = "
174             android:textSize="25sp" />
175
176         <EditText
177             android:id="@+id/editText5"
178             android:layout_width="70dp"
179             android:layout_height="wrap_content"
180             android:textSize="15sp" />
181
182     </LinearLayout>
183
184     <LinearLayout
185         android:layout_width="match_parent"
186         android:layout_height="wrap_content" >
187
188         <TextView
189             android:id="@+id/textView14"
190             android:layout_width="wrap_content"
191             android:layout_height="wrap_content"
192             android:text="第五题:"
193             android:textSize="20sp" />
194
195         <TextView
196             android:id="@+id/textView15"
197             android:layout_width="110dp"
198             android:layout_height="wrap_content"
199             android:textSize="20sp" />
200
201         <TextView
202             android:id="@+id/textView16"
203             android:layout_width="wrap_content"
204             android:layout_height="wrap_content"
205             android:text=" = "
206             android:textSize="25sp" />
207
208         <EditText
209             android:id="@+id/editText6"
210             android:layout_width="70dp"
211             android:layout_height="wrap_content"
212             android:textSize="15sp" />
213
214     </LinearLayout>
215
216     <LinearLayout
217         android:layout_width="match_parent"
218         android:layout_height="wrap_content"
219         android:gravity="right" >
220
221         <TextView
222             android:id="@+id/textView27"
223             android:layout_width="wrap_content"
224             android:layout_height="wrap_content"
225             android:text="(除法运算结果保留两位小数)"
226             android:textSize="15sp" />
227
228         <Button
229             android:id="@+id/button2"
230             android:layout_width="wrap_content"
231             android:layout_height="34dp"
232             android:text="提交"
233             android:textSize="15sp" />
234
235     </LinearLayout>
236
237     <LinearLayout
238         android:layout_width="match_parent"
239         android:layout_height="wrap_content" >
240
241         <TextView
242             android:id="@+id/textView17"
243             android:layout_width="wrap_content"
244             android:layout_height="wrap_content"
245             android:text="你答对了:"
246             android:textSize="20sp" />
247
248         <TextView
249             android:id="@+id/textView18"
250             android:layout_width="100dp"
251             android:layout_height="wrap_content"
252             android:textSize="20sp" />
253
254     </LinearLayout>
255
256      <LinearLayout
257         android:layout_width="match_parent"
258         android:layout_height="wrap_content" >
259
260         <TextView
261             android:id="@+id/textView19"
262             android:layout_width="wrap_content"
263             android:layout_height="wrap_content"
264             android:text="你答错了:"
265             android:textSize="20sp" />
266
267         <TextView
268             android:id="@+id/textView20"
269             android:layout_width="100dp"
270             android:layout_height="wrap_content"
271             android:textSize="20sp" />
272
273     </LinearLayout>
274
275      <LinearLayout
276         android:layout_width="match_parent"
277         android:layout_height="wrap_content" >
278
279         <TextView
280             android:id="@+id/textView21"
281             android:layout_width="wrap_content"
282             android:layout_height="wrap_content"
283             android:text="用时:"
284             android:textSize="20sp" />
285
286         <TextView
287             android:id="@+id/textView22"
288             android:layout_width="100dp"
289             android:layout_height="wrap_content"
290             android:textSize="20sp" />
291
292     </LinearLayout>
293
294      <LinearLayout
295         android:layout_width="match_parent"
296         android:layout_height="wrap_content" >
297
298         <TextView
299             android:id="@+id/textView23"
300             android:layout_width="wrap_content"
301             android:layout_height="wrap_content"
302             android:text="参考答案:"
303             android:textSize="20sp" />
304
305         <TextView
306             android:id="@+id/textView24"
307             android:layout_width="wrap_content"
308             android:layout_height="wrap_content"
309             android:textSize="20sp" />
310
311     </LinearLayout>
312
313      <Button
314          android:id="@+id/button3"
315          android:layout_width="wrap_content"
316          android:layout_height="34dp"
317          android:text="重置"
318          android:textSize="15sp"
319          android:layout_gravity="right" />
320
321      <LinearLayout
322          android:layout_width="wrap_content"
323          android:layout_height="wrap_content" >
324
325          <TextView
326              android:id="@+id/textView26"
327              android:layout_width="wrap_content"
328              android:layout_height="wrap_content"
329              android:text="选择皮肤:"
330              android:textSize="20sp" />
331
332          <Spinner
333              android:id="@+id/spinner1"
334              android:layout_width="200dp"
335              android:layout_height="34dp"
336              android:layout_weight="1"
337              android:prompt="@string/aaa1"
338              android:spinnerMode="dialog" />
339
340      </LinearLayout>
341
342 </LinearLayout>

界面

1 <?xml version="1.0" encoding="utf-8"?>
2 <resources>
3
4     <string name="app_name">ZS</string>
5     <string name="hello_world">Hello world!</string>
6     <string name="action_settings">Settings</string>
7     <string name="aaa1">选择皮肤</string>
8
9 </resources>

strings.xml

依照惯例先上代码,再上运行截图:

时间: 2024-10-15 03:11:57

作业6--再次终结(冲刺三)的相关文章

团队作业4——第一次项目冲刺(Alpha版本)

1.团队作业4--第一次项目冲刺(Alpha版本)-第一篇 2.团队作业4--第一次项目冲刺(Alpha版本)-第二篇 3.团队作业4--第一次项目冲刺(Alpha版本)-第三篇 原文地址:https://www.cnblogs.com/daleag/p/8284758.html

团队作业8----第二次项目冲刺(Beta阶段) 第三天

冲刺第三天 一.Daily Scrum Meeting照片 二.每个人的工作 1.昨天已完成的任务. 昨天完成服务器上的数据库部署与Json数据传输 2.今天计划完成的任务. 今天计划完成安卓手机登入功能 3.工作中遇到的困难. Json传输格式与数据库链接,进行了查询和学习. 4.每个人的贡献比. 余洋(201421123031):15% 邱文鑫(201421123043):22% 潘志坚(201421123044):15% 林青(201421123047):15% 黄子敬(201421123

团队作业4——第一次项目冲刺(Alpha版本)-第三篇

项目冲刺--第三阶段 前两阶段很ok,目测这三天可以搞定! 分工讨论 大体上搞定,设置困难度的功能还未完成. 团队成员 任务 郭达  整合各种代码 刘德培  数据库完善和其他人对接 石浩洋  完善PHP后台的四则运算生成 曾繁钦  完善PHP后台的四则运算生成 孙斌  完善答题过程中的倒计时功能 遇到的小麻烦 计划功能基本实现,在细节上还存在一些小问题,需要花些时间来解决. 燃尽图 代码:https://gitee.com/miracle_stone/SiZeYunSuan 心得体会: 此次项目

团队作业4——第一次项目冲刺(Alpha版本)第五天

天气阴转晴 一.Daily Scrum Meeting照片 二.燃尽图 三.项目进展 1.界面 功能界面已经大致完成 实现判断学生答题正误的界面 2.出题方面 实现错题库的构造 四.困难与问题 1.项目方面: A 自主出题上,真分数的实现还存在一些问题 B 项目页面趣味性不够,无法吸引小学生 2.团队方面: A 经过快一周的磨合,队员间的默契度比之前提高了不少. B 个别队员遇到问题,还是会不太好意思讲出来让大家一起解决,而是喜欢自己鼓捣,不是说这样的方式不行,而是在团队作业中,大家一起解决遇到

团队作业4——第一次项目冲刺(Alpha版本)第一天 and 第二天

第一天冲刺 一.Daily Scrum Meeting照片 二.每个人的工作 1.今天计划完成的任务 基础代码设计.框架设计 2.工作中遇到的困难 刚开始接触安卓,学习起来比较慢. 三.发布项目燃尽图 1.解释说明横纵坐标代表的含义 软件功能的具体个数.(这个是按照团队的讨论划分的) 2.解释说明实线虚线代表的含义 每天完成平均量所汇出来的燃尽图参考. 3.理解燃尽图的作用 燃尽图(burn down chart)是在项目完成之前,对需要完成的工作的一种可视化表示. 四.代码签入 git地址: 

团队作业8----第二次项目冲刺(Beta阶段) 第七天

冲刺第六天 一.Daily Scrum Meeting照片 二.每个人的工作 1.昨天已完成的任务. 昨天在服务器上实现注册 2.今天计划完成的任务. 3.工作中遇到的困难. 因为和之前登入原理一样,暂时没遇到困难 4.每个人的贡献比. 余洋(201421123031):15% 邱文鑫(201421123043):22% 潘志坚(201421123044):15% 林青(201421123047):15% 黄子敬(201421123052):18% 王震(201421123054):15% 三.

团队作业4——第一次项目冲刺总结

coding地址 敏捷冲刺立会导航: 第一次会议 第二次会议 第三次会议 第四次会议 第五次会议 第六次会议 第七次会议 项目完成情况: 目前只实现了根据英文查询中文的功能,单词的发音功能也遇到了缺陷,暂时不能发音. 查词结果:

VLAN终结及三层子接口

VLAN终结是指trunk口与三层口连接时,三层口将VLAN tag去掉,VLAN终结于三层口中.为了让三层口能终结不同的VLAN,并且让VLAN间互通,引入了三层子接口的概念.假设HOST A与SW1/1连接,SW1/1为access口,属于VLAN 10;HOST B与SW1/2连接,SW1/2为access口,属于VLAN20;SW1/3与ROUT1/1连接,SW1/3为TRUNK口,permit VLAN 10和VLAN 20:HOST A的IP为192.168.1.2/24;HOST

团队作业8——Beta 阶段冲刺7th day

一.当天站立式会议 二.每个人的工作 (1)昨天已完成的工作(具体在表格中) 完善支付功能 (2)今天计划完成的工作(具体如下) 测试与正式发布 (3) 工作中遇到的困难(在表格中) 成员 昨天已完成的工作 今天计划完成的工作 工作中遇到的困难 叶华琴(201421123036) 完善支付功能 对挑礼物小程序进行最后的总体测试 今天要回家,时间比较紧迫,任务完成得比较急所以质量也比较不好 方巧玲(201421123038) 和队友一起对支付功能进行改进完善 对软件进行最后的测试与发布 支付功能的