-
高级语言程序设计课程第八次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:102500317 姓名:叶伟鸿 一、书本第11章1 -
实验4
实验1 GradeCalc.hpp #include <algorithm> #include <array> #include <cstdlib> #include <iomanip> #include <iostream> #include <numeric> #include <string> -
实验4
实验任务1 test1.c #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", -
实验5
实验任务1 task1 源代码: #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, -
高级语言程序设计第八次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:10250029 姓名:王梓浩 12.1 12.2 -
高级语言程序设计课程第八次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:102400426 姓名:康凯帆 Fan.: 12- -
102302124_严涛_第四次作业
1.使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、“深证A股”3个板块的股票数据信息。 (1) 代码: 点击查看代码 import sqlite3 import logging from selenium import webdriver from sele -
实验五
task 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 *pm -
第四章作业
贪心算法核心解析与选点问题应用 一、贪心算法核心理解 贪心算法是一种逐步局部最优决策的启发式算法,每一步都选择当前状态下最优(或较优)的选项,不回溯、不考虑未来全局影响,最终期望通过局部最优累积得到全局最优,核心是贪心策略设计与全局最优可行性验证。 二、选点问题(经典区间覆盖类)分析 问题定义(标准 -
实验五
任务一 1.c 点击查看代码 #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, in -
数据采集第四次作业
目录 作业一 运行代码及结果-1 心得体会-1 作业二 运行代码及结果-2 心得体会-2 作业三 运行代码及结果-3 心得体会-3 作业一: 运行代码及结果-1 关键代码 1、首先要去网站上确认目标网站结构,以沪深 A 股页面为例 观察网页结构,可以发现找到所有的目标数据都位于class属性为quo -
8
102500425 杨郑伟 软工4班 https://edu.cnblogs.com/campus/fzu/gjyycx https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 -
高级语言程序设计第八次个人作业
高级语言程序设计第八次个人作业 作业课程:2025高级语言程序设计(福州大学) 作业要求:高级语言程序设计第八次个人作业 学号:052406103 姓名:叶银珍 作业内容 编写并运行书本第11章11.13编程练习题目中的第1~3,6,7题。 (1)设计并测试一个函数,从输入中获取n个字符(包括空白、 -
实验4 组合与继承
实验任务1 运行结果截图如下 问题1 GradeCalc 类声明中,体现"组合"关系的成员声明及对应功能如下: std::vector<int> grades; grades用于存储所有成绩数据 std::array<int, 5> counts; counts用于统计各分数段人数 std::arr -
实验4 组合与继承
实验1: #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); void input(int n -
实验四
task1 GradeCalc.hpp #pragma once #include<vector> #include<array> #include<string> class GradeCalc{ public: GradeCalc(const std::string &cname); void -
实验四
实验任务一 GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); v -
高级语言程序设计课程第八次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:102500332 姓名:郑雷 编写并运行书本第11章 -
实验4
实验任务1 GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class Gradecalc { public: Gradecalc(const std::string &cname); v -
实验4
#任务1 ##代码 ###GradeCalc.hpp 1 #pragma once 2 3 #include <vector> 4 #include <array> 5 #include <string> 6 7 class GradeCalc { 8 public: 9 GradeCalc(con