EE308_LAB2-1

m0_74455685 2022-11-03 23:14:33

 

The Link Your Class

https://bbs.csdn.net/forums/MUEE308FZU202201
The Link of Requirement of This Assignmenthttps://bbs.csdn.net/topics/608858956

The Aim of This Assignment

The prototype design

MU STU ID and FZU STU ID

20124791(MU)_832001204(FZU)

Teammate ID20124538(MU)_832001202(FZU)
Teammate blog 

PSP FORM

Personal Software Process StagesEstimated time(min)Time(min)
Planning1020
Estimate5010
Development--
Analysis2030
Design Spec510
Design Review510
Coding Standard--
Design6030
Coding300200
Code Review1010
Test1010
Test Report5060
Postmortem & Process Improvement Plan· Design Review2030
Summary540420

Demand Aanalysis (NABCD model)

N(need)

The Mid-Autumn Festival is a traditional Chinese festival, and bo bing is derived from the Minnan culture of the Mid-Autumn Festival, a popular entertainment, it uses six dice to throw the result of the combination to determine the participants of the prize, according to legend, this game can predict people's luck in the next year.But during the epidemic, people cannot hold face-to-face blogging, so it is necessary to design an app that can provide online blogging.

A (approach)

There is an initial screen for people to log in, which can be either single player or multiplayer.If you play single player, you can just press the button and wait to see the result of the six dice.If you choose multiplayer, you can choose to create your own room or join a room that others have already created and play multiplayer

B (benefit)

 

Bobing software is fast and convenient, caters to people's needs, and responds to China's needs for epidemic prevention and control. Allow multiple people to participate and interact. It meets the needs of connecting interpersonal relationships and social communication.

Delivery

The most effective way to promote is to pay advertising fees to various mobile App platforms, and make users pass word of mouth by giving users a good impression, so that more non-users will naturally become users. Create a wechat official account for publicity.

PICTURE

Prototype connection( ink knife)

https://modao.cc/app/f98a74cb76df34116b8ed5e79e5588380218176c 

 Summary

This group task mainly tested our ability to design software pages, but also our ability to collaborate with others. In this assignment, I think the main difficulty lies in the collection of materials and page layout. Instead of starting work right away, we set everyone's tasks right first. With this arrangement, we finished the work smoothly.

 

                         

 

...全文
233 回复 打赏 收藏 转发到动态 举报
写回复
用AI写文章
回复
切换为时间正序
请发表友善的回复…
发表回复
已经博主授权,源码转载自 https://pan.quark.cn/s/2d4a7147f9d7 易考通网络考试系统是一款适用于学校、企业及培训机构的集成化软件,能够支持无纸化考试的实施,同时进行题库管理和试卷制作。在作者的持续研发下,现正式发布V2.1版本,其核心功能具体如下: 1、局域网内可进行在线考试,所有测试数据会自动存储于考试服务器,并具备防断电及系统崩溃的保护机制。 2、局域网在线考试具备实时监控功能,系统管理员可即时掌握考生的操作状态,例如登录过程、考试中或已提交试卷等,同时支持锁定、解锁、重启或关闭客户端设备。通过屏幕抓取技术,可动态追踪考试进度,并同步显示剩余时间及IP地址信息,且禁止多台设备使用同一账号并发登录。 3、考试模式分为正式与练习两种,前者会保存答题记录,后者则不记录;考试将在预设时间自动结束。两种模式的试卷均可采用固定或随机生成方式。 4、系统支持多样化题型设置,包括题型、章节、知识点、难度及分值等参数调整。单选题、多选题及判断题提交后由系统自动评分,其中录入题满分需满足正确率达100%且速度达60字符/秒的条件;填空题、简答题及操作题则由管理员手动评分,操作题允许指定服务器文件夹供客户端下载并上传提交内容。 5、单选题与多选题提供6个选项选项,足以满足多数考试需求,若选项少于6个,考试时将自动隐藏多余部分。 6、提供多元组卷选项,支持从题库中随机选择特定数量和难度的题目,或手动挑选,也可按题型分类随机抽取并调整总分。 7、具备便捷的试卷导出功能,可将试卷以Word格式输出(含答案),无需额外排版即可直接打印。 8、支持试题导入,系统可导入符合指定格式的数据库题目至题库。 9、采用灵活的用户管理机制,管理...
源码下载地址: https://pan.quark.cn/s/84348d38bb11 在数据分析和科学计算领域,MATLAB被视为一种效能卓越的工具,其内置了众多函数和接口,能够应对各类数据类型。当面对海量文本数据时,我们时常需要将多个TXT文件载入MATLAB以便进行分析。本教程将系统阐述如何运用MATLAB实现TXT文件的批量导入,并且会提供一个名为`txtread.m`的示范程序以及`txt批量导入使用指南.ppt`的辅助教程。让我们首先聚焦于`txtread.m`这个程序。它是一个用户定义的MATLAB函数,通常用于替换内置的`textscan`或`importdata`函数,目的是更高效地处理大量的TXT文件。该函数可能包含以下几个核心环节:1. **文件路径的生成**:程序初始阶段会构建一个囊括所有待导入TXT文件的文件路径集合。这通常通过遍历特定目录,并搭配文件名模板(例如“*.txt”)来完成。2. **循环访问**:借助一个for循环,对每一个文件路径进行逐一处理。在每一次处理中,程序会调用MATLAB的文件输入输出函数来打开文件并提取数据。3. **数据解析**:依据TXT文件中的数据布局,程序会对数据进行解析。可能需要明确分隔符(比如逗号、制表符等),并且要考虑忽略文件开头的几行(这些行通常包含列标题或注释信息)。4. **数据保存**:获取的数据将被保存在一个庞大的矩阵或者结构数组里。为了处理大量文件,可能需要采用分批读取的策略来防止内存耗尽。5. **异常管理**:在读取期间,程序可能会遭遇文件不存在、文件损坏等情况,因此必须配备恰当的异常管理机制,例如使用try-catch语句。随后是`txt批量导入使用指南.ppt`,这份文档很可...

285

社区成员

发帖
与我相关
我的任务
社区描述
福州大学 梅努斯国际工程学院 软件工程(2022秋) 教学
软件工程 高校
社区管理员
  • LinQF39
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧