-
实验六
实验任务1 源代码 点击查看代码 // P286例8.17 // 对教材示例代码作了微调,把输出学生信息设计成函数模块 // 打印不及格学生信息、打印所有学生信息均调用该模块实现 #include <stdio.h> #include <string.h> #define N 10 // 运行程序输 -
实验6
任务4 1 #define _CRT_SECURE_NO_WARNINGS 2 3 #include <stdio.h> 4 #define N 10 5 6 typedef struct { 7 char isbn[20]; // isbn号 8 char name[80]; // 书名 9 ch -
实验六
实验任务四 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 #define N 10 4 5 typedef struct { 6 char isbn[20]; // isbn号 7 char name[80]; // 书名 8 ch -
20252914 2025-2026-2 《网络攻防实践》第11次作业
20252914 2025-2026-2 《网络攻防实践》第11周作业 1.知识点梳理与总结 一、Web 浏览器渗透攻击相关知识点 1. 浏览器端漏洞利用 该实验属于典型的客户端攻击,攻击目标是靶机用户本地的浏览器或浏览器组件。用户访问恶意网页后,网页中的脚本触发浏览器漏洞,从而执行攻击者指定的 p -
实验6
1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double sales_pric -
实验六
任务4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int -
实验6 C语言结构体和枚举应用编程
实验6 C语言结构体和枚举应用编程 任务四 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // -
实验6
实验任务4 源代码: #include <stdio.h> #define N 10 typedef struct { char isbn[20]; char name[80]; char author[80]; double sales_price; int sales_count; } Book -
实验6
任务1 源代码 1 #include <stdio.h> 2 #include <string.h> 3 #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 4 5 typedef struct student { 6 int id; // 学号 7 char name[20 -
《Python程序设计》实验四实验报告
20254318 2025-2026-2 《Python程序设计》实验四实验报告 课程:《Python程序设计》 班级: 2543 姓名: 李观其 学号: 20254318 实验教师:王志强 实验日期:2026年6月12日 必修/选修:公选课 1. 实验内容 (1)选择游戏开发方向,基于韩国回合制游 -
20243105 2025-2026-2 《Python程序设计》实验4报告
Python综合实践报告:GPS欺骗信号检测与防御系统 项目 内容 课程 Python程序设计 班级 2431 姓名 代雨航 学号 20243105 实验教师 王志强 实验日期 2026年5月11日 — 6月16日 必修/选修 公选课 项目代码通过 PyCharm VCS 推送至远程仓库(源代码见提 -
20254211 2025-2026-2 《Python程序设计》实验四报告
20254211 2025-2026-2 《Python程序设计》实验四报告 课程:《Python程序设计》 班级: 2542 姓名: 吴康为 学号:20254211 实验教师:王志强 实验日期:2026年5月26日 必修/选修: 专选课 一、实验内容 Python综合应用:爬虫、数据处理、可视化、 -
20233225 2025-2026-2 《Python程序设计》实验4报告
2025-2026-2《Python程序设计》实验四报告 课程:《Python程序设计》 班级:2442 姓名:曹熙卓 学号:20233225 实验教师:王志强 实验日期:2026年5月26日 必修/选修:专选课 一、实验内容 Python综合应用:爬虫、数据处理、可视化、机器学习、神经网络、游戏、 -
实验四 Python综合实践
20241207 2025-2026-2 《Python程序设计》实验四综合实践实验报告 ——基于Playwright的剧本杀小红书舆情情感分析系统(被反爬制裁失败版) ——天气系统之要不要来一个说走就走的旅行~(正文在此) 说明:原系统经历了完整的开发过程,从技术选型、代码实现到多次调试优化,最终 -
实验6 C语言结构体和枚举应用编程
实验四 源代码 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double sa -
20254112邓新锐 2025-2026-2 《Python程序设计》实验4报告
课程:《Python程序设计》 班级: 2541 姓名: 邓新锐 学号:20254112 实验教师:王志强 实验日期:2026年6月12日 必修/选修:专选课 一、实验内容 (一)实验内容 Python综合应用:爬虫、数据处理、可视化、机器学习、神经网络、游戏、网络安全等。 例如:编写从社交网络爬取 -
20254226 2025-2026-2《Python程序设计》实验四报告
目录20254226 2025-2026-2 《Python程序设计》实验4报告一、实验内容二、实验目的三、实验过程步骤 1:搭配实验环境步骤 2:创建项目文件夹步骤 3:配置清单 weather_config.py步骤 4: 历史数据模块weather_history.py步骤 5:运行程序wea -
2025-2026学年 Python程序设计 实验四 20243405付鸿睿 「终末」抽卡模拟器
20243405 2025-2026-2 《Python程序设计》实验4——「终末」抽卡模拟器 课程:《Python程序设计》 班级: python全院公选课 姓名: 付鸿睿 学号:20243405 实验教师:王志强 实验日期:2026年6月15日 必修/选修: 公选课 一、项目背景 当今社会,随着 -
实验任务6
实验4 点击查看代码 #include <stdio.h> #define N 10 typedef struct { char isbn[25]; char name[50]; char author[30]; double sale_price; int sale_count; } BOOK; -
实验6
实验6 试验任务4 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 10 4 5 typedef struct { 6 char isbn[20]; // isbn号 7 char name[80]; // 书名 8 char author