- 10
- 0
- 约5千字
- 约 15页
- 2017-01-02 发布于河南
- 举报
C++基础和STL 主讲:陈荣钦 Hello World C程序 #include stdio.h int main() { printf(Hello world!\n); return 0; } C++程序 #include iostream using namespace std; int main() { coutHello world! endl; return 0; } 指针和引用 指针的用法 int n=8; int *p; p = n; int k = *p; 引用的用法 int i = 5; int j = i; i = 7; coutiendl; coutjendl; 指针和引用 交换变量值(指针) void swap(int *x, int* y) { int temp = *x; *x = *y; *y = temp; } 交换变量值(引用) void swap(int x, int y) { int temp = x; x = y; y = temp; } 结构体和类 C的结构体 struct Rectangle { int x1,y1,x2,y2; }; int Area(Rectangle r) { return sqrt((r.x2-r.x1)*(r.x2-r.x1)+(r.y2-r.y1)*(r.y2-r.y1));
您可能关注的文档
最近下载
- 广西中考化学5年(21-25)真题分类汇编——燃料及其利用.docx VIP
- 八年级生命生态安全教案.docx VIP
- 配电线路工(中级)技能鉴定理论考试题库及答案.docx VIP
- TSGT5002-2025电梯维护保养规则.pdf VIP
- 广西中考化学5年(21-25)真题分类汇编——我们周围的空气.docx VIP
- 基于深度学习的房价预测系统的设计与实现.docx VIP
- 近五年云南中考生物真题及答案2024.docx VIP
- 广西中考化学5年(21-25)真题分类汇编——自然界的水.docx VIP
- 2025年超星尔雅学习通《机器学习》章节测试题库及答案解析.docx VIP
- Unit2 The Amazing Animals of Australia课件-2022-2023学年高中英语人教版(2019)选择性必修第四册.pptx VIP
原创力文档

文档评论(0)