-
实验5_CPP
任务1 源代码 publisher.hpp #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = ""); // -
实验5
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, int* pmax -
实验5
任务1 task1 1功能是将数组最小值的地址赋值给pmin,最大值的地址赋值给pmax. 2 都指向的是数组第一个数 task2 1功能是寻找数组中最大的数,返回的是输入的数据里面最大的数字 2不可以,return的是一个指针变量,这里应该返回的是指针变量所指的地址中的数字 任务2 task1 1 -
实验五
实验任务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 #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 -
实验五
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, int *pma -
实验5
实验任务1 task1_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 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500411 姓名:陈鸿彬 (1)声明一个结构 -
实验5 多态
实验任务1 代码组织: publisher.hpp 类publisher及其派生类book,film,music声明 publisher.cpp 类publisher及其派生类book,film,music实现 task1.cpp 测试模块+main publisher.hpp #pragma on -
实验五
task1 源代码 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 学号:102500323 姓名:黄铭昊 一、声明一个结构体类 -
实验5
publisher.h #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = ""); // 构造函数 virt -
实验五
一、试验任务一 验证性实验。综合应用组合、继承、多态实现出版物的分类管理。 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(co -
Python蓝桥杯第二次学习
本周学习内容:视频 16 类与内置类型——视频 19 可变与不可变对象 进度问题:由于这周有4级考试,这几节课也比较长,很多是我没学的,而且由于上周只是看了视频,没有做笔记,这周刚开始做,所以进度比较慢 一:新内容 1:@classmethod 操作类本身的方法 2:@staticmethod静态方 -
实验五
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, int -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:课程 这个作业要求在哪里:要求 学号:102500420 姓名:连骁晗 声明一个结构体类型,用来存放某个学生的姓名、学号、性别、班级、三科成绩,并且打印出来该学生信息。 定义一个结构体数组,用来存放班级中N个学生以上信息,编写三个函数进行信息输入、排序和输出。分别使用数组和指针 -
102302109-胡贝贝-作业4
作业①: (1)实验内容及结果 熟练掌握 Selenium 查找HTML元素、爬取Ajax网页数据、等待HTML元素等内容。 使用Selenium框架+ MySQL数据库存储技术路线爬取“沪深A股”、“上证A股”、“深证A股”3个板块的股票数据信息。 核心代码: class StockDataSpi -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500327 姓名:李文涛 1. 2. 3. 4 -
实验5
task1_1.c 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
任务1 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