2017年6月25日

摘要: 回想开学初对于软件工程这门课的期望,总结本课程对你带来的提升: 学习和使用的新软件及工具 1.AppLoader:APPLoader 是 APICloud Suite 自带的一个工具,用于把我们写好的程序上载到手机,进行测试; 2.Mockplus:Mockplus 是一款简洁快速的原型图设计工具。 阅读全文
posted @ 2017-06-25 17:03 yuejinxia 阅读(158) 评论(0) 推荐(0) 编辑

2017年5月13日

摘要: 软件工程第二次作业—结对编程 一、成员及博客地址 岳锦霞1500802001 http://www.cnblogs.com/jianjiandan/ 刘盈秀1500802015 http://www.cnblogs.com/liuyingxiu/ 二、实现功能及截图 实现了四则运算,以及选做中的统计 阅读全文
posted @ 2017-05-13 19:57 yuejinxia 阅读(123) 评论(0) 推荐(0) 编辑

2017年4月23日

摘要: 一、第四章 4.5中提到结对编程,在4.5.2中也将此和越野赛车和驾驶飞机来类比,但是我认为,比如驾驶飞机,驾驶和副驾驶有许多工作是需要同时工作合作完成,在副驾驶代替驾驶来执行时驾驶可以分散注意力;可当程序员结对编程时,共用使用一个电脑、一个鼠标、一个键盘,会是分工完成项目,不可能是同时来写代码,当 阅读全文
posted @ 2017-04-23 21:56 yuejinxia 阅读(113) 评论(0) 推荐(0) 编辑

2017年4月16日

摘要: 一 花20分钟写一个能自动生成小学四则运算题目的“软件”,要求:除了整数以外,还要支持真分数的四则运算。将代码上传至coding.net,并将地址发布至自己的博客。 https://coding.net/u/yuejinxia/p/Price/git/tree/master/ 二 在一周之内快速看完 阅读全文
posted @ 2017-04-16 20:26 yuejinxia 阅读(146) 评论(0) 推荐(0) 编辑

2017年3月8日

摘要: public class Solution { /** * @param A: a array of integers * @return : return an integer */ public static int removeDuplicates(int[] nums) { int a = 阅读全文
posted @ 2017-03-08 21:49 yuejinxia 阅读(138) 评论(1) 推荐(0) 编辑
 
摘要: class Solution { public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector<int> &prices) { // write your c 阅读全文
posted @ 2017-03-08 21:48 yuejinxia 阅读(84) 评论(0) 推荐(0) 编辑
 
摘要: public class Solution { /** * @param n: An integer * @return: An integer */ public int climbStairs(int n) { // write your code here int a=0,b=1,sum=0; 阅读全文
posted @ 2017-03-08 21:47 yuejinxia 阅读(90) 评论(0) 推荐(0) 编辑