摘要:
任务4: 源码: 1 #include<iostream> 2 3 using namespace std; 4 5 template<typename T> 6 class Vector { 7 private: 8 T* head; 9 int size; 10 int length; 11 p 阅读全文
摘要:
任务3: 源码: 1 #include <iostream> 2 #include <vector> 3 #include "pets.hpp" 4 5 void test() { 6 using namespace std; 7 8 vector<MachinePets*> pets; 9 10 阅读全文
摘要:
任务2: 源码: 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 #include <algorithm> 5 #include <numeric> 6 #include <iomanip> 7 8 using std: 阅读全文
摘要:
任务1: 源码: 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::string; 7 using std::cout; 8 9 // 按钮类 10 class Button { 11 public: 阅读全文
摘要:
任务1 源码: 1 #pragma once 2 3 #include <string> 4 5 // 类T: 声明 6 class T { 7 // 对象属性、方法 8 public: 9 T(int x = 0, int y = 0); // 普通构造函数 10 T(const T &t); / 阅读全文
摘要:
任务1: 源码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 using namespace std; 6 // 声明 7 // 模板函数声明 8 template<ty 阅读全文
摘要:
任务4源码 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 #include <string.h> 4 int main() 5 { 6 FILE* fp; 7 fp = fopen("e:\\data4.txt", "r"); 8 阅读全文
摘要:
任务1源码 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 #include <string.h> 4 #define N 3 // 运行程序输入测试时,可以把这个数组改小一些输入测试 5 6 typedef struct stude 阅读全文
摘要:
任务1源码 1 #include<stdlib.h> 2 #include <stdio.h> 3 #define N 5 4 5 void input(int x[], int n); 6 void output(int x[], int n); 7 void find_min_max(int x 阅读全文
摘要:
任务1源码 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 5 void test1() { 6 int a[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组a占用的内存字节数 10 printf("s 阅读全文