摘要:
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 阅读全文
摘要:
实验任务三 源码 1 #pragma once 2 #include<iostream> 3 #include<string> 4 5 using std::string; 6 using std::cout; 7 using std::endl; 8 9 //电子宠物类 10 class Mach 阅读全文
摘要:
实验任务二 源码: 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 #include <algorithm> 5 #include <numeric> 6 #include <iomanip> 7 8 using std 阅读全文
摘要:
实验任务一 源码 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: 12 阅读全文
摘要:
实验任务一 源码 1 #pragma once 2 3 #include<string> 4 5 class T { 6 public: 7 T(int x = 0, int y = 0); 8 T(const T& t); 9 T(T&& t);//移动构造函数 10 ~T(); 11 void 阅读全文
摘要:
任务一 源代码 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 6 using namespace std; 7 8 template<typename T> 9 void outp 阅读全文
摘要:
task4 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> int main() { FILE* fp; char ch; int cnt = 0; fp = fopen("data4.txt", "r"); 阅读全文
摘要:
task4 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #define N 10 typedef struct { char isbn[20]; char name[80]; char author[80]; double sales_pric 阅读全文
摘要:
task1_1 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x 阅读全文
摘要:
task1_1 #include<stdio.h> #define N 4 void test1() { int a[N] = { 1,9,8,4 }; int i; printf("sizeof(a)=%d\n", sizeof(a)); for (i = 0; i < N; i++) print 阅读全文