摘要:
Task4 Vector.hpp: 1 #ifndef VECTOR_HPP 2 #define VECTOR_HPP 3 4 #include <iostream> 5 #include <exception> 6 7 template <typename T> 8 class Vector { 阅读全文
摘要:
Task3: 1 #ifndef PETS_HPP 2 #define PETS_HPP 3 4 #include <string> 5 6 class MachinePets { 7 private: 8 std::string nickname; 9 10 public: 11 MachineP 阅读全文
摘要:
Task2: 1 Gradecalc.cpp: 2 #include <iostream> 3 #include <vector> 4 #include <string> 5 #include <algorithm> 6 #include <numeric> 7 #include <iomanip> 阅读全文
摘要:
task1: 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 阅读全文
摘要:
task1: 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 7 #include <iostream 阅读全文