摘要:
回想开学初对于软件工程这门课的期望,总结本课程对你带来的提升: 学习和使用的新软件 mockplus 在前期我们用mockplus对整个基于微信的借还书平台进行设计,从一开始的完全没有接触过这种新软件的我们开始进行摸索设计,在软件开发初期我们设计了各种页面(包括首页、网页链接)对我们将要设计出的页面 阅读全文
摘要:
1500802065 https://git.coding.net/Heed theblind chant/caculate_mlf.git . 独自完成未结对 心得 首先不得不承认这次作业还有很多不完善的地方。这次计算器ui界面的实现,我选择了MFC的操作界面,但是在随机出题上面还是出了一些问题。 阅读全文
摘要:
一.花20分钟写一个能自动生成小学四则运算题目的“软件”,要求:除了整数以外,还要支持真分数的四则运算。将代码上传至coding.net,并将地址发布至自己的博客 "" https://coding.net/u/Heed theblind chant/p/caculate/git/tree/mast 阅读全文
摘要:
#include "stdafx.h"#include<iostream>using namespace std; int method(int a){ if (a==1) return 1; else if (a==2) return 2; else if (a>2) return method( 阅读全文
摘要:
#include "stdafx.h"#include <iostream>using namespace std;int _tmain(int argc, _TCHAR* argv[]){ int length,s,a,max; cout<<"请输入数组长度"; cin>>length; int 阅读全文
摘要:
#include "stdafx.h"#include <iostream>using namespace std; int _tmain(int argc, _TCHAR* argv[]){ int length,a,s,i; cout<<"请输入数组长度"; cin>>length; int * 阅读全文