-
数据采集第三次作业-102302128吴建良
《数据采集与融合》第三次作业 学号: 102302128姓名: 吴建良 Gitee仓库地址: https://gitee.com/wujianliang9/2025-data-collection/tree/master/第三次作业 作业①:多线程爬取网站图片 一、核心思路与代码 1. MiniCr -
实验3类和对象
实验任务1 源代码如下: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string -
实验3
##实验任务1 #代码 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button 7 { 8 public: 9 Button(const std::string& label_); 10 const st -
实验03
实验一 button.hpp #pragma once #include<iostream> #include<string> class Button{ public: Button(const std::string &label_); const std::string &get_label( -
hyx_蓝桥杯C++学习_系列一
C++语法基础 C++的语法与C语言在很多地方并无差异,本篇主要是对C++中一些独有的语法进行整理 基本结构 对比C语言中的一堆include,C++似乎显得更加简洁,我们可以使用#include<bits/stdc++.h>这个万能头文件,省去不少书写代码的麻烦。 但是区别于C语言,C++在#in -
实验4 组合与继承
任务一: 源代码: GradeCalc.hpp 1 #pragma once 2 3 #include <vector> 4 #include <array> 5 #include <string> 6 7 class GradeCalc { 8 public: 9 GradeCalc(const -
实验4
GradeCalc.h #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); void inpu -
102302156 李子贤 数据采集第四次作业
作业1 要求:熟练掌握 Selenium 查找HTML元素、爬取Ajax网页数据、等待HTML元素等内容。 使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、“深证A股”3个板块的股票数据信息。 候选网站:东方财富网:http://quote.eastmoney -
102302134陈蔡裔数据采集第四次作业
第一题 核心代码和运行结果 from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.edge.options import Options import ti -
实验四
实验任务一:源代码: #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); void input -
第三章博文
1.关于数学三角形这道题目,从图形来看,它拥有自上而下的的逻辑结构,根据观察,可以列出以下的递归方程式: 假设我们使用一个二维数组c的下半三角来存放整个数学三角形,用i来控制行(从1开始),用j来控制列,那么就有: 1.c[i][j]=c[i][j]+c[i-1][j],j0 这表示当要计算三角形左 -
20232417 2025-2026-1 《网络与系统攻防技术》实验五实验报告
1.实验内容 1.1实验要求 (1)从www.besti.edu.cn、baidu.com、sina.com.cn中选择一个DNS域名进行查询,获取如下信息:DNS注册人及联系方式、该域名对应IP地址、IP地址注册人及联系方式、IP地址所在国家、城市和具体地理位置 (2)尝试获取BBS、论坛、QQ、 -
高级语言程序设计第五次作业
高级语言程序设计第五次作业 作业课程:2025高级语言程序设计(福州大学) 作业要求:高级语言程序设计第五次个人作业 学号:052406103 姓名:叶银珍 作业内容 程序设计 设计一个getchar和putchar联合使用的程序,使得程序遇到空格符时结束。 #include <stdio.h> i -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500317 姓名:叶伟鸿 一、设计程序 1. -
20232412 2024-2025-1 《网络与系统攻防技术》实验五实验报告
1.实验内容 实验要求 (1)选择一个DNS域名进行查询,获取如下信息:DNS注册人及联系方式、该域名对应IP地址、IP地址注册人及联系方式、IP地址所在国家、城市和具体地理位置。 PS:使用whois、dig、nslookup、traceroute、以及各类在线和离线工具进行搜集信息(要求必须用W -
第三次作业
一、动态规划法求解 “数字三角形” 1.1 递归方程式及边界条件问题描述数字三角形由 n 行数字组成,第 i 行(从 0 开始计数)有 i+1 个数字,记为triangle[i][j](0≤j≤i)。 从顶部(第 0 行第 0 列)出发,每次只能向下(i+1,j)或向右下(i+1,j+1)移动,求到 -
实验4
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\n", siz -
实验四
实验任务一 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 #include<stdlib.h> 4 #include<string.h> 5 6 #define N 4 7 #define M 2 8 void test1() { -
实验4
任务1 #include<stdio.h> #define N 4 #define M 2 void test1(){ int x[N]={1,9,8,4}; int i; printf("sizeof(x)=%d\n",sizeof(x)); for(i=0;i<N;i++) printf("%p -
数据采集实践第二次作业—102302131陈宇新
数据采集实践第二次作业—102302131陈宇新 代码路径:https://gitee.com/chenyuxin0328/data-collection/tree/master/作业2 作业1 在中国气象网(http://www.weather.com.cn)给定城市集的7日天气预报,并保存在数据