• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 数据采集第三次作业-102302128吴建良

    《数据采集与融合》第三次作业 学号: 102302128姓名: 吴建良 Gitee仓库地址: https://gitee.com/wujianliang9/2025-data-collection/tree/master/第三次作业 作业①:多线程爬取网站图片 一、核心思路与代码 1. MiniCr
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   wujianliang   2025-11-25 21:37    0    10
  • 实验三

    任务1: 源代码task1.cpp: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button(
     面向对象程序设计(南京信息工程大学)   mm77777   2025-11-25 20:31    1    10
  • 实验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
     面向对象程序设计(南京信息工程大学)   xzhls   2025-11-25 20:23    1    10
  • 实验六

    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
     程序设计基础(南京信息工程大学)   李佳颖   2025-12-20 13:17    0    10
  • 102302109-胡贝贝-作业4

    作业①: (1)实验内容及结果 熟练掌握 Selenium 查找HTML元素、爬取Ajax网页数据、等待HTML元素等内容。 使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、“深证A股”3个板块的股票数据信息。 核心代码: class StockDataSpi
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   茶农123   2025-12-10 13:56    0    10
  • 实验6

    实验任务1: 源代码contestant.hpp 1 #pragma once 2 #include<iomanip> 3 #include<iostream> 4 #include<string> 5 6 struct Contestant{ 7 long id; 8 std::string na
     面向对象程序设计(南京信息工程大学)   知之为吃吃   2025-12-19 20:58    0    10
  • 数据采集与融合技术大作业

    食鲜配·智厨 这个项目属于哪个课程 https://edu.cnblogs.com/campus/fzu/2025DataCollectionandFusiontechnology 组名 风雨无组 项目名字及简介 食鲜配·智厨是一个基于Python 3.7+和Django 2.0.7的智能电商菜谱一
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   贪吃小屁   2025-12-19 17:42    0    10
  • 实验6

    任务1: 源代码: contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; //
     面向对象程序设计(南京信息工程大学)   不吃虾仁饭   2025-12-17 22:46    0    10
  • 实验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; void ou
     程序设计基础(南京信息工程大学)   鸋y   2025-12-19 21:42    0    10
  • 落山基唬人队-beta冲刺

    这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/202501SoftwareEngineering 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/202501SoftwareEngineering/homewor
     202501 软件工程(福州大学 - 计算机与大数据学院)   xuezong691   2025-12-23 09:56    0    10
  • 实验5

    实验任务1: 源代码: 点击查看publisher.cpp #include <iostream> #include <string> #include "publisher.hpp" // Publisher类:实现 Publisher::Publisher(const std::string &
     面向对象程序设计(南京信息工程大学)   王扁   2025-12-14 22:41    1    10
  • 实验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
     面向对象程序设计(南京信息工程大学)   知之为吃吃   2025-12-14 23:45    1    10
  • 贪心算法解决 “选点问题”:策略、证明与思考

    贪心算法解决 “选点问题”:策略、证明与思考 在算法学习中,贪心算法是一类 “局部最优导向全局最优” 的经典思想。本文以作业中的 “选点问题” 为例,详解贪心策略的设计、正确性证明,同时谈谈我对贪心算法的理解。 一、选点问题:问题分析与贪心策略 问题描述 数轴上有n个闭区间[a_i, b_i],要求
     网络空间安全2401(广东外语外贸大学 - 信息学院)   mohuili   2025-12-15 11:52    0    10
  • 实验6

    任务1: contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 s
     面向对象程序设计(南京信息工程大学)   彤彤酱   2025-12-17 11:14    0    10
  • 数据采集与融合技术实践作业四

    作业一: 代码: import requests import pymysql import time import json DB_HOST = 'localhost' DB_USER = 'root' DB_PASSWORD = '123456' # 【请在这里修改你的数据库密码】 DB_NAM
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   MENDAXZ   2025-12-10 13:18    0    10
  • 实验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,
     程序设计基础(南京信息工程大学)   仇昕泽   2025-12-10 20:07    1    10
  • 高级程序语言第九次

    这个作业属于:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500416 姓名:王浩宇 第一题 第二题 第三题 第四题
     2025高级语言程序设计(福州大学)   why102500416   2025-12-10 18:33    0    10
  • 实验五

    一、试验任务一 验证性实验。综合应用组合、继承、多态实现出版物的分类管理。 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(co
     面向对象程序设计(南京信息工程大学)   zxy22213   2025-12-10 22:48    1    10
  • 实验5

    实验任务1 #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
     程序设计基础(南京信息工程大学)   付小   2025-12-11 21:48    1    10
  • 实验五

    任务一: 1.源代码: (1)publisher.hpp: #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ =
     面向对象程序设计(南京信息工程大学)   Likgon   2025-12-12 21:22    1    10
< Prev1···5758596061626364656667···200Next >

Copyright ©2025 Cnblogs, Inc. Powered by .NET Core on Kubernetes. 问题反馈   帮助文档