-
高级语言程序设计课程第十次作业
2024高级语言程序设计:https://edu.cnblogs.com/campus/fzu/2024C 高级语言程序设计课程第十次作业:https://edu.cnblogs.com/campus/fzu/2024C/homework/13314 学号:072303426 姓名:王子博 按照老师 -
实验五
1. 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 main() { int a[N]; int min, m -
# 2024-2025-1 20241310 《计算机基础与程序设计》第十一周学习总结
2024-2025-1 20241310 《计算机基础与程序设计》第十一周学习总结 作业信息 这个作业属于哪个课程 2024-2025-1-计算机基础与程序设计 这个作业要求在哪里 2024-2025-1计算机基础与程序设计第一周作业 这个作业的目标 自学教材《计算机科学概论(第七版)》第15,16 -
2024-2025-1 20241311 《计算机基础与程序设计》第十一周学习总结
学期 2024-2025-1 学号 20241311 《计算机基础与程序设计》第十一周学习总结 作业信息 这个作业属于哪个课程 <班级的链接> 2024-2025-1-计算机基础与程序设计) 这个作业要求在哪里 <作业要求的链接>2024-2025-1计算机基础与程序设计第十一周作业) 这个作业的目 -
学期:2024-2025-1 学号:20241303 《计算机基础与程序设计》第十一周学习总结
作业信息 这个作业属于哪个课程 2024-2025-1-计算机基础与程序设计 这个作业要求在哪里 2024-2025-1计算机基础与程序设计第十一周作业 这个作业的目标 计算机科学概论(第七版)第15,16章 并完成云班课测试,《C语言程序设计》第10章并完成云班课测试 作业正文 ... 本博客链接 -
高级程序语言设计第十次作业
2024高级语言程序设计:https://edu.cnblogs.com/campus/fzu/2024C 高级语言程序设计课程第十次个人作业:https://edu.cnblogs.com/campus/fzu/2024C/homework/13314 学号:102400115 姓名:洪育豪 10 -
实验五
#pragma once #include #include using std::cout; using std::endl; using std::string; // 发行/出版物类:Publisher (抽象类) class Publisher { p -
5
1 源代码 #include #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); -
高级语言程序设第十次个人作业
2024高级语言程序设计:https://edu.cnblogs.com/campus/fzu/2024C 高级语言程序设计课程第十次个人作业:https://edu.cnblogs.com/campus/fzu/2024C/homework/13314 学号:102400111 姓名:蔡伟仡 1. -
实验5
实验1: task1_1.c: 1 #include 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, -
实验5 继承和多态
实验任务3 源代码: pets.hpp 1 #pragma once 2 3 #include 4 #include 5 6 using namespace std; 7 class MachinePets{ 8 public: 9 MachinePets(con -
高级语言程序设计课程第十次个人作业
2024高级语言程序设计:https://edu.cnblogs.com/campus/fzu/2024C 高级语言程序设计课程第十次个人作业:https://edu.cnblogs.com/campus/fzu/2024C/homework/13314 学号:172209065 姓名:林伟豪 1 -
实验5
task.1.1 代码: #include #define N 5 void input(int a[],int n); void output(int a[],int n); void find_max_min(int a[],int n,int *pmax,int *pmin) -
高级语言程序设计课程第十次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13314 学号:092300125 姓名:张天荣 #include<st -
实验5 继承和多态
任务三: pets.hpp 1 #include 2 #include 3 4 using std::string; 5 using std::cout; 6 using std::endl; 7 8 class MachinePets { 9 public: -
实验5 继承和多态
任务一: publisher.hpp #pragma once #include #include using std::cout; using std::endl; using std::string; // 发行/出版物类:Publisher (抽象类) -
实验五 继承和多态
1.实验任务一 publish.hpp #pragma once #include #include using std::cout; using std::endl; using std::string; // 发行/出版物类:Publisher (抽象类) -
程序设计实验5
实验任务1 实验任务2 1. out << left; // 设置对齐方式为左对齐 out << item.rb << endl // 输出 `item.rb` << setw(15) << "售价:" << item.sales_price << endl // 输出售价 << setw(15) -
实验五 继承和多态
实验任务1: (1)代码部分: 1 #pragma once 2 3 #include 4 #include 5 6 using std::cout; 7 using std::endl; 8 using std::string; 9 10 // 发行/出版物 -
实验5 c语言指针应用编程
实验任务1 task1_1.c 1 #include 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,