会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
dyb20030328
博客园
首页
新随笔
联系
订阅
管理
2022年11月30日
实验六
摘要: 实验任务3 task3_1.cpp源码: 1 #include <iostream> 2 #include <fstream> 3 #include <array> 4 #define N 5 5 int main() { 6 using namespace std; 7 array<int, N>
阅读全文
posted @ 2022-11-30 23:12 段彦博
阅读(18)
评论(0)
推荐(0)
2022年11月24日
实验5
摘要: 实验任务4 pets.hpp源码: 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 class MachinePets{ 5 private: 6 string nickname; 7 public: 8 Machin
阅读全文
posted @ 2022-11-24 19:04 段彦博
阅读(21)
评论(0)
推荐(0)
2022年11月3日
实验四
摘要: 实验任务五: vectorInt.hpp: 1 #include <iostream> 2 #include <cassert> 3 using namespace std; 4 class vectorInt { 5 public: 6 vectorInt(int n); 7 vectorInt(
阅读全文
posted @ 2022-11-03 17:51 段彦博
阅读(7)
评论(0)
推荐(0)
2022年10月19日
实验三
摘要: 实验任务5: Info.hpp文件源码: 1 #include<iostream> 2 #include<vector> 3 #include<string> 4 using namespace std; 5 class info { 6 private: 7 string nickname; 8
阅读全文
posted @ 2022-10-19 20:30 段彦博
阅读(35)
评论(0)
推荐(0)
2022年10月12日
实验二
摘要: 实验任务4 Complex.hpp文件源码: 1 #include<iostream> 2 #include<math.h> 3 using namespace std; 4 class Complex { 5 public: 6 Complex(double r=0.0,double i=0.0)
阅读全文
posted @ 2022-10-12 22:34 段彦博
阅读(27)
评论(0)
推荐(0)
2022年9月28日
实验一
摘要: 实验任务2 源代码: 1 #include <iostream> 2 using std::cout; 3 using std::endl; 4 5 class Point 6 { 7 public: 8 Point(int x0 = 0, int y0 = 0); 9 Point(const Po
阅读全文
posted @ 2022-09-28 19:36 段彦博
阅读(10)
评论(0)
推荐(0)
公告