会员
周边
捐助
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
祁东
自己有海,不赶浪潮 ~会者定离,一期一祈
导航
博客园
首页
新随笔
联系
订阅
管理
公告
2021年10月9日
day-15
摘要: 1. delete 和 new 2. 函数重载 3. 内联函数 4. 常量 5. 引用 常量引用 int x = 1; const int& y = x; x = 2; cout << y << endl; /*output 2 */ 函数引用 int& func2(int* pint) { ret
阅读全文
posted @ 2021-10-09 23:04 祁东
阅读(30)
评论(0)
推荐(0)
编辑
day-15 代码
摘要: 汉诺塔 - 递归 #include <iostream> #include <cstring> #include <string> #include <iomanip> #include <windows.h> #include <ctime> using namespace std; int co
阅读全文
posted @ 2021-10-09 23:04 祁东
阅读(17)
评论(0)
推荐(0)
编辑