-
实验4
实验任务一: 源代码: #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 < -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500312 姓名:朱喻辰 设计一个getcha -
实验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(" -
实验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 -
实验五
实验五 实验任务一 源代码: #include <memory> #include <iostream> #include <vector> #include "publisher.hpp" void test1() { std::vector<Publisher *> v; v.push_back -
实验5
实验任务1: 源代码: 点击查看publisher.cpp #include <iostream> #include <string> #include "publisher.hpp" // Publisher类:实现 Publisher::Publisher(const std::string & -
实验五
实验任务1 1 #include <stdio.h> 2 #define N 5 3 void input(int x[], int n); 4 void output(int x[], int n); 5 void find_min_max(int x[], int n, int *pmin, i -
实验五
task1-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 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500307 姓名:汤晓彤 声明一个结构体类型, -
实验六
实验任务1 源代码contestant.hpp 1 #pragma once 2 #include <iomanip> 3 #include <iostream> 4 #include <string> 5 struct Contestant { 6 long id; // 学号 7 std::st -
实验6
实验任务1: utils.hpp源代码: 1 #pragma once 2 #include <fstream> 3 #include <iostream> 4 #include <stdexcept> 5 #include <string> 6 #include <vector> 7 #inclu -
高级语言程序设计课程第十次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102400102 姓名:方韵希 作业内容 (1)编写 -
智能运动辅助应用-形之助-综合实践
综合实践 组名、项目简介:<组名:好运来,项目需求:智能运动辅助应用,项目目标:对用户上传的视频进行分析评分以及改进意见。项目开展技术路线:这是一个基于Vue3+Python+openGauss的技术路线。前端使用Vue3实现用户界面和可视化,后端用Python集成MediaPipe进行姿态分析算法 -
高级语言程序设计课程第十次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102500305 姓名:赖晓娟 (1)编写一个程序, -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500336 姓名:林陈帅 一. 作业内容 声明 -
102302124_严涛_第四次作业
1.使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、“深证A股”3个板块的股票数据信息。 (1) 代码: 点击查看代码 import sqlite3 import logging from selenium import webdriver from sele -
Test5
任务一 源代码 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 学号:102500432 姓名:陈光奇 1.(合并1,2) -
高级程序语言第九次
这个作业属于:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500416 姓名:王浩宇 第一题 第二题 第三题 第四题 -
实验五
一、试验任务一 验证性实验。综合应用组合、继承、多态实现出版物的分类管理。 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(co