-
实验六
task4 1 #include <stdio.h> 2 #include <stdlib.h> 3 #define N 10 4 5 typedef struct { 6 char isbn[20]; 7 char name[80]; 8 char author[80]; 9 double sal -
实验六
任务1: 代码: 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; // 学号 8 std::string name; // -
实验6 文件I/O与异常处理
实验任务1 程序源代码如下: contestant.hpp 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 6 struct Contestant { 7 long id; 8 std:: -
OOP-实验6
实验任务1 源代码task1 1 // 结构体Contestant定义及其重载运算符函数>>和<<实现 2 3 #pragma once 4 5 #include <iomanip> 6 #include <iostream> 7 #include <string> 8 9 struct Conte -
102302109-胡贝贝-作业4
作业①: (1)实验内容及结果 熟练掌握 Selenium 查找HTML元素、爬取Ajax网页数据、等待HTML元素等内容。 使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、“深证A股”3个板块的股票数据信息。 核心代码: class StockDataSpi -
102302134陈蔡裔数据采集综合实践
综合实践 引言 大家好,我是陈蔡裔,来自“途个开心——旅行规划与记录助手”项目团队。在为期数月的项目开发中,我主要担任前端架构师,负责从技术选型到组件开发的全链路实现。本文将系统性地分享我在Vue3、组件化架构、数据可视化以及性能优化方面的技术实践与深度思考。 一、技术栈选型与架构设计 1.1 为什 -
oop-实验6
task1 contestant.hpp 1 #pragma once 2 3 #include<iomanip> 4 #include<iostream> 5 #include<string> 6 7 struct Contestant{ 8 //学号/姓名/专业 9 long id; 10 st -
20232421 2025-2026-1 《网络与系统攻防技术》实验八实验报告
1.实践内容 Web前端HTML Web前端javascipt(尝试注入攻击) Web后端:MySQL基础:正常安装、启动MySQL,建库、创建用户、修改密码、建表 Web后端:编写PHP网页,连接数据库,进行用户认证 最简单的SQL注入,XSS攻击测试 安装DVWA或WebGoat平台,并完成SQ -
第四次博客作业
1. (1)贪心策略:每次选择右端点最小的点,且仅当当前被选区间左端点大于上一个选择的右端点时,才新增选点。 (2)贪心性质的证明: 设区间集合E = {1,2,...,n}以按右端点的坐标升序排列,区间1具有最小的右端点。 a.贪心选择性质: 设A⊆E是最优解且A中覆盖的第一个区间(即右端点最小的 -
102302142罗伟钊第四次作业
作业1: - 要求: ▪ 熟练掌握 Selenium 查找HTML元素、爬取Ajax网页数据、等待HTML元素等内 容。 ▪ 使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、 “深证A股”3个板块的股票数据信息。 ▪ 候选网站:东方财富网:http://quo -
Test5
任务一 源代码 publisher.hpp 点我展开代码 #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = -
实验五
一、试验任务一 验证性实验。综合应用组合、继承、多态实现出版物的分类管理。 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(co -
实验5
任务1.1 1 #include <stdio.h> 2 #define N 5 3 4 void input(int x[], int n); 5 void output(int x[], int n); 6 void find_min_max(int x[], int n, int *pmin, -
高级程序语言第九次
这个作业属于:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500416 姓名:王浩宇 第一题 第二题 第三题 第四题 -
数据采集与融合技术实践作业四
作业一: 代码: import requests import pymysql import time import json DB_HOST = 'localhost' DB_USER = 'root' DB_PASSWORD = '123456' # 【请在这里修改你的数据库密码】 DB_NAM -
实验五
任务一: 1.源代码: (1)publisher.hpp: #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = -
实验5_CPP
任务1 源代码 publisher.hpp #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = ""); // -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500307 姓名:汤晓彤 声明一个结构体类型, -
实验5
一 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax); int -
实验5
实验任务1: 源代码publisher.hpp 1 #pragma once 2 #include<string> 3 4 class Publisher{ 5 public: 6 Publisher(const std::string &name_=""); 7 virtual ~Publishe