摘要: 实验任务1 源代码task1 1 // 类GradeCalc声明 2 3 #pragma once 4 5 #include <vector> 6 #include <array> 7 #include <string> 8 9 class GradeCalc 10 { 11 public: 12 阅读全文
posted @ 2025-11-28 19:15 FF-10086 阅读(7) 评论(0) 推荐(0)
摘要: 实验任务1 源代码task1 1 // Button类定义、实现 2 3 #pragma once 4 5 #include <iostream> 6 #include <string> 7 8 class Button 9 { 10 public: 11 Button(const std::str 阅读全文
posted @ 2025-11-22 20:55 FF-10086 阅读(6) 评论(1) 推荐(0)
摘要: 实验任务1 源代码task1 1 // 类T的声明、友元函数声明 2 3 #pragma once 4 5 #include <string> 6 7 // 类T: 声明 8 class T 9 { 10 // 对象属性、方法 11 public: 12 T(int x = 0, int y = 0 阅读全文
posted @ 2025-10-23 16:25 FF-10086 阅读(26) 评论(1) 推荐(0)
摘要: https://www.cnblogs.com/JxLi 阅读全文
posted @ 2025-10-12 17:49 FF-10086 阅读(12) 评论(0) 推荐(0)
摘要: 实验任务1 源代码task1.cpp 1 // 现代C++标准库、算法库体验 2 // 1. 字符串string、动态数组容器类vector、迭代器 3 // 2. 算法库:反转元素次序、旋转元素 4 // 3. 函数模板、const引用作为形参 5 6 #include <iostream> 7 阅读全文
posted @ 2025-10-12 17:41 FF-10086 阅读(19) 评论(1) 推荐(0)