-
实验五
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 学号:102500411 姓名:陈鸿彬 (1)声明一个结构 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:课程 这个作业要求在哪里:要求 学号:102500420 姓名:连骁晗 声明一个结构体类型,用来存放某个学生的姓名、学号、性别、班级、三科成绩,并且打印出来该学生信息。 定义一个结构体数组,用来存放班级中N个学生以上信息,编写三个函数进行信息输入、排序和输出。分别使用数组和指针 -
数据采集实践第四次作业—102302131陈宇新
gitee:https://gitee.com/chenyuxin0328/data-collection/tree/master/作业4 作业1 熟练掌握 Selenium 查找 HTML 元素、爬取 Ajax 网页数据、等待 HTML 元素等内容。 使用 Selenium 框架+ MySQL 数 -
实验5
任务1-1 1.把数组中最大最小值赋给相应地址变量 2.min和max的地址 任务1-2 1.找到数组最大值,返回最早出现的最大值元素的地址。 2.可以 任务2 1.80Byte,s1占用字节数,s1实际上在\0截断前的占用字节数 2.不行。s1是地址常量。应该使用strcpy函数进行字符串拷贝赋值 -
实验五_C语言指针应用编程
实验任务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 *pmax -
实验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 -
实验5 多态
任务1 源代码 publisher.hpp 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(const std::string -
实验五
任务一: 1.源代码: (1)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 学号:102500413 姓名:陈帅 声明一个结构体类型,用 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500309 姓名:郑睿杰 1.目的 声明一个结 -
实验5
Task1 源代码 Publisher.h #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string& name_ = ""); // -
团队作业5——测试与发布(Alpha版本)
项目信息 项目 内容 所属课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience 作业要求 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScien -
实验五
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 -
高级程序设计个人作业第九次
这个作业属于哪个课程 <班级的链接> 这个作业要求在哪里 <作业链接> 学号 092300303 姓名 池博洋 @目录声明一个结构体类型,用来存放某个学生的姓名、学号、性别、班级、三科成绩,并且打印出来该学生信息定义一个结构体数组,用来存放班级中N个学生以上信息,编写三个函数进行信息输入、排序和输出 -
实验五
实验五 实验任务11111111111111 1; 问题1:找出最大值及最小值 问题2:指向x[0] 2; 问题1:函数find_max的功能是查找数组中的最大值元素,并返回指向该最大值元素的指针 问题2:不可以,line2应把“&”去掉 实验任务22222222222222 1; 问题1:大小为8 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx?filter=homework 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500422 -
实验5 多态
Task1 publisher.hpp #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = ""); // 构 -
实验五 多态
Task1: 1.源代码: #include <iostream> #include <string> #include "publisher.hpp" // Publisher类:实现 Publisher::Publisher(const std::string &name_): name {na -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500328 姓名:刘宇桓 声明一个结构体类型,