摘要: 组员 索吉鑫 1500802011 "索吉鑫的博客" 才仁代吉 1500802025 "才仁代吉的博客" 实验要求: 必做 两人组成一队进行结对编程。 从第一次软件工程作业中选出一人作业作为这次作业的基础。 设计一个图形界面的四则运算界面应用程序,可以是pc桌面应用程序,网站界面程序,手机界面程序。 阅读全文
posted @ 2017-05-10 21:41 "云"之巅战队 阅读(106) 评论(0) 推荐(0)
摘要: 关注《构建之法 的作者邹欣老师的博客 "邹欣老师" 。 软件工程第一次作业作业要求: 写一个能自动生成小学四则运算题目的“软件”,要求:除了整数以外,还要支持真分数的四则运算。 将代码上传至 "coding.net" . 在一周之内快速看完《构建执法》,列出你不懂的5 10个问题,发布在自己的博客上 阅读全文
posted @ 2017-04-23 15:26 "云"之巅战队 阅读(150) 评论(0) 推荐(0)
摘要: package Maxmoney;public class Lchar{ public int climbStair(int t) { if(t == 0){ return 1; } int[] ST= new int[t+1]; ST[0] = 1; ST[1] = 1; for(int j=2; 阅读全文
posted @ 2017-03-09 11:40 "云"之巅战队 阅读(119) 评论(0) 推荐(0)
摘要: package Maxmoney; public class maxmoney { public static void main(String[] args) { int array[]={8,6,5,4,5}; System.out.println(maxmoney(array)); }publ 阅读全文
posted @ 2017-03-09 11:39 "云"之巅战队 阅读(98) 评论(0) 推荐(0)
摘要: #include "stdafx.h"#include<iostream>using namespace std;int _tmain(int argc, _TCHAR* argv[]){ int length=4; int array[3]={1,1,2}; for(int i=1;i<lengt 阅读全文
posted @ 2017-03-09 11:38 "云"之巅战队 阅读(89) 评论(0) 推荐(0)