-
9
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500431 姓名:杨明浩 注:有些方法有点复杂 -
cjw_蓝桥杯python基础学习系列二—语言基础
python数据容器(二) 一:序列 序列是指:内容连续、有序,可使用下标索引的一类数据容器 列表、元组、字符串,均可视为序列 序列的常规操作:切片 切片:从一个序列当中取出一个子序列 语法:序列(起始下标:结束下标:步长) 表示从序列当中,从指定位置开始,依次取出元素,到指定位置结束,得到一个新序 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500432 姓名:陈光奇 1.(合并1,2) -
NUIST-OOP-LAB05
实验5-多态 实验目的 知道什么是类模板,会正确定义和实例化 理解运算符重载机制,会编写运算符函数,理解编译器如何将表达式转换为对运算符函数的调用 知道什么是抽象类,会正确定义和使用 基于问题场景,能合理使用继承、虚函数、抽象类实现接口继承与运行时多态 实验准备 系统浏览/复习以下教材章节: 继承: -
实验5 多态
实验任务1 代码组织: publisher.hpp 类publisher及其派生类book,film,music声明 publisher.cpp 类publisher及其派生类book,film,music实现 task1.cpp 测试模块+main publisher.hpp #pragma on -
实验五
一、试验任务一 验证性实验。综合应用组合、继承、多态实现出版物的分类管理。 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(co -
高级语言程序设计第九次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 姓名:郭心悦 学号:102500308 一、作业 声明一个结 -
实验5 多态
任务1 源代码 publisher.hpp 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(const std::string -
实验5
任务1 1 1 #include <memory> 2 2 #include <iostream> 3 3 #include <vector> 4 4 #include "publisher.hpp" 5 5 void test1() { 6 6 std::vector<Publisher *> v -
实验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 -
实验五
实验五 实验任务11111111111111 1; 问题1:找出最大值及最小值 问题2:指向x[0] 2; 问题1:函数find_max的功能是查找数组中的最大值元素,并返回指向该最大值元素的指针 问题2:不可以,line2应把“&”去掉 实验任务22222222222222 1; 问题1:大小为8 -
实验5
实验任务1 task1_1 代码 点击查看代码 #include <stdio.h> #include<stdlib.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(i -
实验5
实验任务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); int -
实验作业5
实验任务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, in -
oop-实验5
task1 publisher.hpp 1 #pragma once 2 3 #include<iostream> 4 #include<string> 5 6 //发行/出版物类:Publisher(抽象类) 7 class Publisher{ 8 public: 9 Publisher(con -
团队作业5——测试与发布(Alpha版本)
团队作业5——测试与发布(Alpha版本) 这个作业属于哪个课程 班级链接 这个作业要求在哪里 作业要求 这个作业的目标 < 验证核心预约功能是否可用、界面交互是否正常以及数据库与后端服务的稳定性,为系统迭代奠定基础> 一、Alpha版本测试报告 一、测试概述 1. 测试依据: 《在线考试系统需求规 -
团队作业5——测试与发布(Alpha版本)
项目信息 项目 内容 所属课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience 作业要求 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScien -
高级语言程序设计第九次作业
高级语言程序设计第九次作业 作业所属课程:我的班级 作业内容:第九次作业 姓名:黄洁琳 学号:102500306 1 声明一个结构体类型,用来存放某个学生的姓名、学号、性别、班级、三科成绩,并且打印出来该学生信息。 2 定义一个结构体数组,用来存放班级中N个学生以上信息,编写三个函数进行信息输入、排 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500332 姓名:郑雷 1 2 3 4 5 6 -
高级语言程序设计课程第十次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15596 学号:102500414 姓名:陈树湘 (1)编写一个程序,