-
博客园地址
https://www.cnblogs.com/game-8 -
高级语言程序设计第1次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102400120 姓名:林严泽 1 2 3 总结与思 -
SY2
TASK1` #include <stdio.h> include <stdlib.h> include <time.h> define N 5 define N1 80 define N2 35 int main() { int cnt; int random_major, random_no; -
实验1
// 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <string> # -
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 -
实验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 -
实验五
一、试验任务一 验证性实验。综合应用组合、继承、多态实现出版物的分类管理。 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 一、作业 声明一个结 -
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 -
实验五
实验五 实验任务11111111111111 1; 问题1:找出最大值及最小值 问题2:指向x[0] 2; 问题1:函数find_max的功能是查找数组中的最大值元素,并返回指向该最大值元素的指针 问题2:不可以,line2应把“&”去掉 实验任务22222222222222 1; 问题1:大小为8 -
实验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 源代码 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 -
高级语言程序设计课程第九次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500332 姓名:郑雷 1 2 3 4 5 6 -
高级语言程序设计第九次作业
高级语言程序设计第九次作业 作业所属课程:我的班级 作业内容:第九次作业 姓名:黄洁琳 学号:102500306 1 声明一个结构体类型,用来存放某个学生的姓名、学号、性别、班级、三科成绩,并且打印出来该学生信息。 2 定义一个结构体数组,用来存放班级中N个学生以上信息,编写三个函数进行信息输入、排 -
团队作业5——测试与发布(Alpha版本)
团队作业5——测试与发布(Alpha版本) 这个作业属于哪个课程 班级链接 这个作业要求在哪里 作业要求 这个作业的目标 < 验证核心预约功能是否可用、界面交互是否正常以及数据库与后端服务的稳定性,为系统迭代奠定基础> 一、Alpha版本测试报告 一、测试概述 1. 测试依据: 《在线考试系统需求规 -
团队作业5——测试与发布(Alpha版本)
项目信息 项目 内容 所属课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience 作业要求 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScien -
高级语言程序设计第八次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:102500334 姓名:吴俊杰 一.编写并运行书本