会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
SHARE
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
2023年2月12日
利用指针 访问数组中元素
摘要: 实现截图 实现代码 int arr[3] = { 1,2,3 }; for (int i = 0; i < 3; i++) { cout << (arr + i) << " " << *(arr + i) << endl; }
阅读全文
posted @ 2023-02-12 19:16 share0956
阅读(23)
评论(0)
推荐(0)
编辑
2023年2月11日
C++ 的输入输出
摘要: 实现截图 实现代码 #include <iostream> using namespace std; int main() { //声明变量 int a; //输入 cin >> a; //输出 cout << a; }
阅读全文
posted @ 2023-02-11 17:41 share0956
阅读(17)
评论(0)
推荐(0)
编辑
2023年1月6日
C++通讯录管理系统
摘要: 菜单功能实现原理 实现结果 实现代码 #include <iostream> using namespace std; //菜单界面 void showMenu() { cout << "*****************************" << endl; cout << "***** 1
阅读全文
posted @ 2023-01-06 20:10 share0956
阅读(14)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
公告