摘要:
task4 代码: #pragma once #include <iostream> #include <stdexcept> #include <iomanip> // 模板类 Vector 的定义 template <typename T> class Vector { public: // 构 阅读全文
摘要:
task3 代码: #pragma once #include <iostream> #include <string> class MachinePets { protected: std::string nickname; public: MachinePets(const std::strin 阅读全文
摘要:
task2 代码: #include <iostream> #include <vector> #include <string> #include <algorithm> #include <numeric> #include <iomanip> using std::vector; using 阅读全文
摘要:
task1 代码: #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const string &te 阅读全文
摘要:
task1 代码: task1.h: #pragma once #include <string> // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T &t); // 复制构造函数 T 阅读全文
摘要:
task1 代码: #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; // 声明 // 模板函数声明 template<typename T> void 阅读全文
摘要:
task4 1 #include<stdio.h> 2 int main(){ 3 FILE *fp; 4 long count=0; 5 char t; 6 if((fp=fopen("data4.txt","r"))==NULL){ 7 printf("error\n"); 8 return 1 阅读全文
摘要:
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 sale 阅读全文
摘要:
task1.1 1 #include <stdio.h> 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, int *pmi 阅读全文
摘要:
task1 1.1 代码 1 #include <stdio.h> 2 #define N 4 3 4 void test1() { 5 int a[N] = {1, 9, 8, 4}; 6 int i; 7 // 输出数组a占用的内存字节数 8 printf("sizeof(a) = %d\n", 阅读全文