-
9
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500431 姓名:杨明浩 注:有些方法有点复杂 -
高级语言程序设计课程第九次个人作业
班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx/ 作业链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 姓名:卢龙腾 学号:102500324 1. 2. 3. 4. 5.6. 7. -
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_ = -
cjw_蓝桥杯python基础学习系列二—语言基础
python数据容器(二) 一:序列 序列是指:内容连续、有序,可使用下标索引的一类数据容器 列表、元组、字符串,均可视为序列 序列的常规操作:切片 切片:从一个序列当中取出一个子序列 语法:序列(起始下标:结束下标:步长) 表示从序列当中,从指定位置开始,依次取出元素,到指定位置结束,得到一个新序 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500432 姓名:陈光奇 1.(合并1,2) -
实验五
任务1.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 -
实验5
task1_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 *pmi -
实验5
实验任务1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #define N 5 4 5 void input(int x[], int n); 6 void output(int x[], int n); 7 void find_min_max( -
实验5
实验任务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, -
实验5
试验任务一 1.. 函数 find_min_max 功能是判断数组中数据的最大和最小值。 2。x[0]所对应的数据 3。找到数组中最大值的地址,返回数组中最大值的地址。 4。可以。一种是下标的交换。一种元素的交换。 试验任务二 1。80个字节,s1所占字节数,s1字符串长度 2。不可以,char 【 -
实验五
实验任务1: 1.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 *p -
实验5
实验任务1 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 *p -
实验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 m -
实验5
task1_1 1 #include<stdio.h> 2 #define _CRT_SECURE_NO_WARNINGS 3 #define N 5 4 void input(int x[], int n); 5 void output(int x[], int n); 6 void find_m -
作业4
问题:数轴上有n个闭区间[ai, bi]。取尽量少的点,使得每个区间内都至少有一个点(不同区间内含的点可以是同一个) 我的策略: 1.将所有区间按照右端点从小到大排序 2.初始化当前选择的点为第一个区间的右端点,计数器置为 1 3.依次检查后续每个区间,若当前区间的左端点大于已选择的点(即该区间不包 -
第四次作业
贪心策略: 1.优先选择结束时间最早的活动; 2.从第一个活动开始,每次选 “开始时间大于上一个选中活动结束时间” 的活动,直到遍历完所有活动。 证明贪心选择性质: 假设 A 是问题的一个最优解,将 A 中的区间按结束时间升序排序,设 A 中第一个区间为([sk,ek])。 情况 1:(k=1)(即 -
20232410 2025-2026-1 《网络与系统攻防技术》实验八实验报告1
Web前后端开发与网络安全测试实验报告 1. 实验内容 (1) Web前端HTML 能正常安装、启停Apache。理解HTML,理解表单,理解GET与POST方法,编写一个含有表单的HTML。 (2) Web前端javascript 理解JavaScript的基本功能,理解DOM。 在(1)的基础上 -
高级程序语言第七次作业
高级程序语言第七次作业 这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号 222200424 姓名 赵伟 -
实验4
task1 1.源代码 GradeCalc.hpp 1 #pragma once 2 3 #include <vector> 4 #include <array> 5 #include <string> 6 7 class GradeCalc { 8 public: 9 GradeCalc(cons