实验七

实验六

task1.c // P286例8.17 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include <stdio.h> #include<stdlib.h> #include <string.h> #define N 3 ......

实验6 C语言结构体、枚举应用编程

1、实验1 运行结果 2、实验2 源代码 1 #include <stdio.h> 2 #include <string.h> 3 #define N 10 4 #define M 80 5 6 typedef struct { 7 char name[M]; // 书名 8 char author ......
语言 结构

实验6 模板类、文件IO和异常处理

任务4 1 #include <iostream> 2 #include "Vector.hpp" 3 4 void test() { 5 using namespace std; 6 7 int n; 8 cin >> n; 9 10 Vector<double> x1(n); 11 for (a ......
模板 文件

实验6 模板类、文件IO和异常处理

实验任务4 #pragma once #include<iostream> #include<stdexcept> using namespace std; template<typename T> class Vector { public: Vector(int n); Vector(int n ......
模板 文件

实验六

#include <iostream> #include <stdexcept> template <typename T> class Vector { private: int size; T *vec; public: Vector<T>() = default; Vector<T>(int ......

实验六、模板类,文件I/O流,异常处理

实验四: Vector.hpp: // #pragma once #include <iostream> #include <stdexcept> using namespace std; template <typename T> class Vector { private: T* data; ......
模板 文件

实验6

任务1 task1 #include "Complex.hpp" #include <iostream> #include <fstream> #include <stdexcept> // 测试1:复数模板类测试 void test1() { using namespace std; Comple ......

实验7

test 1: 第n 条数据为空,并且无法输出第一天条数据 test 2: 用feof test 4: #include<stdio.h> int main() { FILE* fp; fp = fopen("E:\\whatever666", "r"); char qwe; int q = 0; ......

实验六 模板类,文件io和异常处理

实验任务4 #pragma once #include <iostream> #include <stdexcept> using std::cout; using std::endl; template <typename T> class Vector { public: // 构造函数,默认大 ......
模板 文件

实验6

实验4 1 #include <stdio.h> 2 #include<string.h> 3 #define N 10 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // ......

实验6

1.实验任务4 1 #include <iostream> 2 #include <stdexcept> 3 4 template <typename T> 5 class Vector { 6 private: 7 T* data; 8 size_t size; 9 public: 10 Vect ......

实验6 模板类、文件I/O和异常处理

实验任务4 Vector.hpp #pragma once #include <iostream> #include <stdexcept>#include <string> using namespace std; template <typename T> class Vector { publ ......
模板 文件

实验6_C语言结构体、枚举应用编程

task4.c #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 ......
语言 结构

实验六

task4: 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 ......

实验六

......

实验6 模板类、文件I/O和异常处理

Task4: vector.hpp: #include<iostream> #include<string> #include<stdexcept> using namespace std; template <typename T> class Vector { private: T* data; ......
模板 文件

实验7

实验任务4:\ #include <stdio.h> int main() { int i=0; char s; FILE *fp; fp=fopen("data4.txt","r"); while(1){ s=fgetc(fp); if(s==EOF){ break; } else if(s==' ......

团队作业(五):冲刺总结(七)

团队作业(五):冲刺总结(七) 一、各个成员今日完成的任务 姓名完成的任务 20211310何威烨 完善后端逻辑 20211311陈泽阳 数据库代码处理 20211324李城斌 文件传输功能优化 20211326德永 调试数据库 20211404燕航天 优化界面 二、各个成员今日对项目的贡献量 姓名 ......
团队

实验六

任务四 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 sales_ ......

实验六

实验代码 实验任务4 .hpp #include<iostream>#include<stdexcept>#include <cassert>using namespace std;template<typename T>class Vector{private: T* ptr; int size; ......

实验六

task4.hpp #include<iostream> #include<stdexcept> #include <cassert> using namespace std; template<typename T> class Vector { private: T* ptr; int size ......

实验六

4.hpp #include<iostream> #include<stdexcept> template<typename T> class Vector { private: int size; T* p; public: Vector<T>(int s); Vector<T>(int s, T ......

实验六

实验任务4 vector.hpp #include<iostream> #include<stdexcept> #include <cassert> using namespace std; template<typename T> class Vector { private: T* ptr; i ......

渗透测试实验报告一

1. 实验目的和要求 实验目的:理解网络扫描、网络侦察的作用;通过搭建网络渗透测试平台,了解并熟悉常用搜索引擎、扫描工具的应用,通过信息收集为下一步渗透工作打下基础。 系统环境:Kali Linux 2、Windows 网络环境:交换网络结构 2. 实验步骤 1:利用Google语法 搜索site: ......
报告

实验三-电子公文传输系统1-个人贡献

实验三-电子公文传输系统1-个人贡献 任务详情 1 简述你完成的工作 2 你们小组总共的代码行数,你贡献的代码行数?相关代码链接? 3 你们小组总共的文档数?你贡献的文档数?相关链接? 主要处理完成的工作 1 我完成了项目冲刺的5和6两天的实现情况的撰写,编写了部分后端代码和系统的使用指南 2 所有 ......
传输系统 公文 贡献 系统 电子

实验6

实验1 代码 1 // P286例8.17 2 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 3 // 打印不及格学生信息和所有学生信息程分别调用 4 5 #include <stdio.h> 6 #include <string.h> 7 #define N 3 // 运行 ......

实验7_文件应用编程

4.task_4 1 #include <stdio.h> 2 #include <string.h> 3 #define N 10000 4 5 int main() 6 { 7 int count,i,t=0; 8 char x[N]; 9 FILE *fp; 10 fp=fopen("D:\\ ......
文件

实验6

任务1: #define _CRT_SECURE_NO_WARNINGS //P286例8.17 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include <stdio.h> #include <string.h> #d ......

实验三-电子公文传输系统1-个人贡献

个人贡献 1、简述你完成的工作 部分前端代码及文档撰写 github项目管理 协助设计系统前端布局 2、你们小组总共的代码行数,你贡献的代码行数?相关代码链接? 贡献的代码行数:985 https://github.com/hexaosf/codegram https://github.com/he ......
传输系统 公文 贡献 系统 电子

实验三-电子公文传输系统2-贡献排序

肖权城 张顺扬 沈楗翔 徐元琦 李心怡 20% 17% 16.5% 16% 15.5% ......
传输系统 公文 贡献 系统 电子