-
[T.4] 团队项目:选题和需求分析
[T.2] 团队项目:选题和需求分析 这个作业属于哪个课程 北航2026年春季软件工程 这个作业的要求在哪里 [T.4] 团队项目:选题和需求分析 我在这个课程的目标是 完整开发一次软件,锻炼软件开发能力 这个作业在哪个具体方面帮助我实现目标 给予我们自行选择软件的机会,让我们充分锻炼能力 杰后余生 -
实验二
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() { 6 int number; 7 int i; 8 srand(time(0)); // 以当前系统时间作为随机种子 -
实验一
课程:《Python程序设计》 班级: 2434 姓名: 王忠正 学号:20243409 实验教师:王志强 实验日期:2026年3月23日 必修/选修: 公选课 1.实验内容 1.熟悉Python开发环境; 介绍Python开发环境的各项功能。 2.练习Python运行、调试技能; 编写书中的程序, -
实验二
任务一 点击查看代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for(i -
实验2
实验任务1 问题1:随机生成某专业学员编号,范围在202400420001~202400420100之间 问题2:返回一个1-100之间的伪随机数 问题3:固定占4个字符宽度,不够四位在左边补0 问题4:使每一次生成的随机数不一样,删去后生成的随机数每次都一样 源代码 点击查看代码 #include -
实验2
1 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 7 int main() { 8 int number; 9 int i; 10 11 srand(time(0)); // 以当前系 -
试验2
实验1 1.随机生成5个学员编号 2.给number随机赋值一个1-100之间的数 3.保证输出编号格式相等 4.实现真正的随机效果 实验2 1.会使总价在循环中累加,导致错误结果 2.跳过continue后的代码但不终止循环 实验3 #include <stdio.h> int main() { -
202513050183张艳斌实验二
 -
20252230 实验二《Python程序设计》实验报告
学号 2025-2026-2 《Python程序设计》实验x报告 课程:《Python程序设计》 班级: 2522 姓名: 刘畅 学号:20252230 实验教师:王志强 实验日期:2026年4月13日 必修/选修: 公选课 1.实验内容 (1)编写计算器程序 设计并完成一个完整的应用程序,完成加减 -
4.13
今天上了计算机网络 工程数学 和软件工程课 其中在软件工程课上对结对开发进行了生动的讲解 列举各种比喻和真实实例 使我认识到结对开发是很有必要性的 同时在课上我还进行了对一个项目的开发 使我受益匪浅 -
实验2
实验1 代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() 6 { 7 int number; 8 int i; 9 srand(time(0)); // 以当前系统 -
数据结构作业1
` #include <stdio.h> #include <stdlib.h> typedef int DataType; typedef struct SeqList { int MAXNUM; DataType *elemennt; int n; }SeqList; typedef struc -
4.12
今天对我的项目又一次进行了完善