摘要: 一、回想开学初对于软件工程这门课的期望,总结本课程对你带来的提升: 1.学习和使用的新软件 Mockplus原型设计软件设计原型版面 2.学习和使用的新工具 Enterprise Architect UML分析和设计工具,绘制用例图,类图 新浪云作为编译工具 My sql作为数据库管理系统 3.学习 阅读全文
posted @ 2017-06-24 20:21 无事的百姓 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 一、结对编程 一、结对编程搭档 组队人:逯香:http://www.cnblogs.com/luxiang01/p/6838073.html 张安祺 代码和实验报告网站:https://git.coding.net/zaq123456789/exp22.git 二.结对编程内容: 两人组成一队,进行 阅读全文
posted @ 2017-05-10 21:30 无事的百姓 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 一、结对编程搭档 组队人:逯香:http://www.cnblogs.com/luxiang01/p/6838073.html 张安祺 代码和实验报告网站:https://git.coding.net/zaq123456789/exp22.git 二.结对编程内容: 两人组成一队,进行结对编程,从第 阅读全文
posted @ 2017-05-10 20:33 无事的百姓 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 四则预算:https://git.coding.net/zaq123456789/exp12.git 问题: 1.我看到了p9应用软件中的应用软件指的是具体那方面的,我查了一下资料还是无法理解,我的困惑是这是指哪一方面的。 2.我看到了p48团队对个人期望那一段中我无法理解团队和个人能力哪个重要,我 阅读全文
posted @ 2017-04-16 21:06 无事的百姓 阅读(131) 评论(1) 推荐(0) 编辑
摘要: class Solution {public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { // write your code here if(n == 0) return 1; if(n 阅读全文
posted @ 2017-03-08 21:06 无事的百姓 阅读(81) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include"iostream"using namespace std;int _tmain(int argc, _TCHAR* argv[]){ int min,A[5]; int i,max=1,j; for(i=0;i<5;i++) { cin>>A[ 阅读全文
posted @ 2017-03-08 20:44 无事的百姓 阅读(83) 评论(0) 推荐(0) 编辑
摘要: int A[5],i,j=1;cout<<"请输入5个数组:";for(i=0;i<5;i++){cin>>A[i];}for(i=0;i<5;i++){if(A[i]!=A[j]) { cout<<A[i]; }j++;}return 0; 阅读全文
posted @ 2017-03-08 20:31 无事的百姓 阅读(127) 评论(0) 推荐(0) 编辑