-
个人回忆录---2024软件工程历险记
这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/SE2024 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/SE2024/homework/13315 这个作业的目标 回顾这一学期所完成的软工任务,总结这一学期的 -
实验6 模板类、文件I/O和异常处理
实验任务4 代码 Vector.hpp 1 #pragma once 2 #include <iostream> 3 #include <stdexcept> 4 5 template <typename T> 6 class Vector { 7 public: 8 // 构造函数 9 Vecto -
实验6 模板类、文件I/O和异常处理
1.实验任务4 Vector.hpp源代码: 点击查看代码 #pragma once #include <iostream> #include <stdexcept> #include <algorithm> // for std::copy template <typename T> class -
实验6 模板类、文件I/O和异常处理
实验任务4: vector.hpp 1 #pragma once 2 3 #include<iostream> 4 #include<stdexcept> 5 #include<string> 6 7 using namespace std; 8 9 template<typename T> 10 -
实验6 模板类、文件I/O和异常处理
task4 源码: 1 #include<iostream> 2 #include <stdexcept> 3 #include <algorithm> 4 5 template<typename T> 6 class Vector{ 7 private: 8 T* data; 9 size_t s -
实验6
task.4 代码: #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // -
实验6
实验任务4: 源代码: 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 doubl -
实验六
task1 1 #include<stdio.h> 2 #include<string.h> 3 #define N 3 4 5 typedef struct student { 6 int id; 7 char name[20]; 8 char subject[20]; 9 double perf -
专业团队第五次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/rjjc 这个作业的目标 小组成员分工合作完成项目选题文档和项目完成品 组长姓名-学号 王欣茹-2022329301069 组员姓名-学号 王一涵-2022329301070 组员姓名-学号 陈镔-2021 -
实验6 C语言结构体、枚举应用编程
实验6 C语言结构体、枚举应用编程 实验任务1——学生信息处理 // P286例8.17 // 对教材示例代码作了微调,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息、打印所有学生信息均调用该模块实现 #include <stdio.h> #include <string.h> #d -
实验6 模板类、文件I/O和异常处理
任务1 Complex.hpp 1 #pragma once 2 3 #include <iostream> 4 #include <stdexcept> 5 6 // 声明 7 //////////////////////////////////////////////////// 8 // 复数 -
实验6 C++
任务四: Vector.hpp #pragma once #include <iostream> #include <stdexcept> using namespace std; template <typename T> class Vector { public: Vector(int n, -
第五次作业
这个作业属于哪个课程 24软件技术基础 这个作业的目标 小组成员分工合作完成项目选题文档和项目完成品 姓名-学号(组长) 吴誉斐-2022329301102 姓名-学号 孙雨丹-2022329301101 姓名-学号 陈航涛-2022329301041 姓名-学号 路振琪-2022329340053 -
实验6
任务4: #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 in -
实验6
实验任务4: 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double sal -
实验六
任务四 源代码 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double sa -
实验6 模板类、文件I/O和异常处理
task4: Vector.hpp源代码: 1 #include<iostream> 2 3 using namespace std; 4 5 template <typename T> 6 class Vector 7 { 8 public: 9 Vector(int nn) :n{ nn } { -
实验六
任务四: 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct 5 { 6 char isbn[20]; // isbn号 7 char name[80]; // 书名 8 char author[80]; // 作者 9 double sal -
20222314 2024-2025-1 《网络与系统攻防技术》实验八实验报告
20222314 2024-2025-1 《网络与系统攻防技术》实验八实验报告 1. 实验内容 1.1 Web前端HTML 能正常安装、启停Apache。理解HTML,理解表单,理解GET与POST方法,编写一个含有表单的HTML 1.2 Web前端javascipt 理解JavaScript的基本 -
实验6
4. 实验任务4 完整的task4.c源码 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; //