-
[I.3] 个人作业:结课总结
项目 内容 这个作业属于哪个课程 北航2026春软件工程 这个作业的要求在哪里 个人作业:结课总结 我在这个课程的目标是 了解、熟悉软件工程开发一般流程和方法,与团队共同完成软件项目,提高团队协作能力 这个作业在哪个具体方面帮助我实现目标 回顾在整个软件工程课程中的经历,总结可能未来使用到的经验 一 -
[I.3] 个人作业:结课总结
项目 内容 这个作业属于哪个课程 BUAA_SE_2026_LR 这个作业的要求在哪里 作业要求链接 我在这个课程的目标是 系统性的学习软件工程的知识,逐步成为一个成熟的软件开发者,与团队、结对成员一起协作完成软件开发,共同成长进步。 这个作业在哪个具体方面帮助我实现目标 阅读邹老师的经典作品,了解 -
[I.3]个人作业:结课总结
项目 内容 这个作业属于哪个课程 课程社区首页 这个作业的要求在哪里 作业要求 我在这个课程的目标是 系统学习现代软件工程的开发流程、方法与规范,在实践中提升个人工程能力,并深入体验团队合作开发的过程。 这个作业在哪个具体方面帮助我实现目标 做最后的总结 个人作业:结课总结 一、提问回顾 我的第一次 -
实验4
1. 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(x) = -
实验4
#define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> #include <stdlib.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; printf -
实验4
实验任务1 源代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("siz -
实验4
任务1 源代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof -
实验四
任务1 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x)); -
实验4
任务一 源代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeo -
实验四
点击查看代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 #include<stdlib.h> 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 -
实验四
任务一 源代码 复制代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 #include<stdlib.h> 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用 -
实验4
实验任务1 #include <stdlib.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x) -
实验4
++实验任务1 源代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("si -
20254204刘俐《Python程序设计》实验三报告
20254204 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2542 姓名: 刘俐 学号:20254204 实验教师:王志强 实验日期:2026年4月28日 必修/选修: 专选课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客户 -
20252806 2025-2026-2 《网络攻防实践》第七周作业
20252806 2025-2026-2 《网络攻防实践》第七周作业 1.实践内容 (1)使用Metasploit开展Linux远程渗透攻击 核心任务:运用Metasploit渗透测试工具,针对Linux靶机上Samba服务存在的Usermap_script安全漏洞实施渗透攻击,成功获取目标Linu -
20252812 2025-2026-2 《网络攻防实践》实践七报告
20252812 2025-2026-2 《网络攻防实践》实践七报告 1.实践内容 1.1 本周学习内容 1.1.1 Linux概述 Linux系统在服务器、安全敏感部门、移动终端市场上有重要地位。Linux之所以能成为目前最受关注的系统之一,是因为其开放性与免费性。Linux具有开放性是因为它的源 -
实验4
一、实验结论 1.task1 代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = { 1, 9, 8, 4 }; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\ -
实验四
实验1 代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x) -
实验4
试验任务1 代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #define N 4 4 #define M 2 5 6 void test1(){ 7 int x[N] = {1,9,8,4}; 8 int i; 9 10 printf("sizeof -
实验4
任务1: 代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeo