摘要:
实验任务四 代码 vector.hpp 1 #ifndef VECTOR_HPP 2 #define VECTOR_HPP 3 4 #include <stdexcept> 5 #include <iostream> // 确保可以使用std::cout和std::endl 6 7 template 阅读全文
摘要:
实验任务三 代码 task3.cpp 1 #include <iostream> 2 #include <vector> 3 #include "pets.hpp" 4 5 void test() { 6 using namespace std; 7 8 vector<MachinePets *> 阅读全文
摘要:
实验任务二 代码 GradeCalc.hpp 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 #include <algorithm> 5 #include <numeric> 6 #include <iomanip> 阅读全文
摘要:
实验任务一 代码 window.hpp 1 #pragma once 2 #include "button.hpp" 3 #include <vector> 4 #include <iostream> 5 6 using std::vector; 7 using std::cout; 8 using 阅读全文
摘要:
实验任务一 代码 t.h 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 & 阅读全文
摘要:
实验任务1 代码 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 7 #include <iostre 阅读全文
摘要:
任务4 代码 1 #include <stdio.h> 2 #include <ctype.h> 3 4 int main() { 5 FILE *file; 6 int count = 0; 7 int ch; 8 9 file = fopen("data4.txt", "r"); 10 if ( 阅读全文
摘要:
任务4 代码 1 #include <stdio.h> 2 #include <string.h> 3 4 #define N 10 5 6 typedef struct { 7 char isbn[20]; // isbn号 8 char name[80]; // 书名 9 char author 阅读全文
摘要:
任务1 1.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 * 阅读全文
摘要:
任务1 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 8 printf("sizeof(a) = %d\n", sizeof(a)); 9 10 f 阅读全文