摘要: 实现截图 实现代码 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) 编辑
摘要: 实现截图 实现代码 #include <iostream> using namespace std; int main() { //声明变量 int a; //输入 cin >> a; //输出 cout << a; } 阅读全文
posted @ 2023-02-11 17:41 share0956 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 菜单功能实现原理 实现结果 实现代码 #include <iostream> using namespace std; //菜单界面 void showMenu() { cout << "*****************************" << endl; cout << "***** 1 阅读全文
posted @ 2023-01-06 20:10 share0956 阅读(14) 评论(0) 推荐(0) 编辑