会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
zzzys
博客园
首页
新随笔
联系
订阅
管理
2022年12月5日
实验六
摘要: task3: task3.1 源码: 1 #include<iostream> 2 #include<fstream> 3 #include<array> 4 #define N 5 5 int main() { 6 using namespace std; 7 array<int, N> x{ 9
阅读全文
posted @ 2022-12-05 14:26 RICHENGG
阅读(31)
评论(0)
推荐(0)
2022年11月27日
实验五
摘要: task4. pets.hpp: 1 #pragma once 2 #include<iostream> 3 #include<string> 4 using namespace std; 5 class MachinePets { 6 public: 7 MachinePets() = defau
阅读全文
posted @ 2022-11-27 16:51 RICHENGG
阅读(31)
评论(0)
推荐(0)
2022年11月7日
实验四
摘要: 实验任务5 代码: vectorInt.hpp: 1 #pragma once 2 #include<iostream> 3 #include<cassert> 4 using namespace std; 5 class vectorInt { 6 int size, * p; 7 public:
阅读全文
posted @ 2022-11-07 19:42 RICHENGG
阅读(20)
评论(0)
推荐(0)
2022年10月22日
实验三
摘要: 实验任务五 info.hpp: 1 #pragma once 2 #include<iostream> 3 #include<iomanip> 4 using namespace std; 5 class info { 6 string nickname; 7 string contact; 8 s
阅读全文
posted @ 2022-10-22 16:57 RICHENGG
阅读(10)
评论(0)
推荐(0)
2022年10月13日
实验二
摘要: 实验任务4 Complex.hpp文件源码: 1 #pragma once 2 #include<iostream> 3 using namespace std; 4 class Complex { 5 public: 6 Complex(); 7 Complex(double real0, dou
阅读全文
posted @ 2022-10-13 10:30 RICHENGG
阅读(40)
评论(0)
推荐(0)
2022年10月3日
实验一
摘要: 实验任务二 1 #include<iostream> 2 3 using std::cout; 4 using std::cin; 5 using std::endl; 6 class Point { 7 public: 8 Point(int x0 = 0, int y0 = 0); 9 Poin
阅读全文
posted @ 2022-10-03 21:35 RICHENGG
阅读(29)
评论(0)
推荐(0)
2022年9月27日
address
摘要: #include<iostream> using namespace std; int main() { cout<<"https://www.cnblogs.com/zzzys/"; }
阅读全文
posted @ 2022-09-27 23:23 RICHENGG
阅读(54)
评论(0)
推荐(0)
公告