1、C++的特点:C++既可以用于面向过程的结构化程序设计,又可用于面向对象的程序设计。
C++对C的发展:i 在面向过程的机制上,对C的功能进行了不少补充;
ii 增加了面向对象的机制
2、C++程序单位:预处理命令、全局声明部分、函数
预处理命令:程序在编译前,处理的命令;
全局声明部分:用户定义的函数类型和在函数中变量的定义;
函数:函数是程序的执行部分。
3、拿到一个任务到得到最终结果一般的步骤:源程序的编辑、编译、连接、运行、分析。
4、编辑:用C++语言编辑源程序;
编译:把源程序编译成二进制的目标程序;
连接:把目标程序与库函数及系统提供的其他信息连接起来生成可执行的二进制程序。
生成的目标程序,不可直接运行。
5、
- #include <iostream>
- using namespace std;
- int main()
- {
- cout<<"this"<<"is";
- cout<<"a"<<"C++";
- cout<<"program."<<endl;
- return 0;
- }
6、
- #include <iostream>
- using namespace std;
- int main()
- {
- int a,b,c;
- a=10;
- b=23;
- c=a+b;
- cout<<"a+b="<<c<<endl;
- return 0;
- }
7、
- #include <iostream>
- using namespace std;
- int main()
- {
- int a,b,c;
- int f(int x,int y,int z);
- cin>>a>>b>>c;
- c=f(a,b,c);//调用函数F
- cout<<c<<endl;
- return 0;
- }
- int f(int x,int y,int z)//求三数中的最小数,并返回
- {
- int m;
- if(x) m=z;
- else m=y;
- if(z<m) m=z;
- return(m);
- }
8、
- #include <iostream>//预处理命令
- using namespace std;//全局声明部分,使用名字空间 std
- int main()//主函数
- {
- int a,b,c;//变量要先声明,再使用
- cout<<"请输入2个数a,b :"<<endl;//输出一段提示
- cin>>a>>b;//把输入的书保存在变量a,b中
- c=a+b;
- cout<<"a+b="<<c<<endl;
- return 0;//主函数是int型,给函数一个整形的返回值
- }
输入:2 5运行
输出:a+b=7回车
9、
- #include <iostream>
- using namespace std;
- int add(int x,int y);
- int main()
- {
- int a=1,b=2,c;
- c=add(a,b);
- cout<<"a+b="<<c<<endl;
- return 0;
- }
- int add(int x,int y)
- {
- int z;
- z=x+y;
- return(z);
- }
输出:a+b=3回车
10、
- #include <iostream>
- using namespace std;
- int add(int x,int y);
- int main()
- {
- void sort(int x,int y,int z);
- int x,y,z;
- cin>>x>>y>>z;
- sort(x,y,z);
- return 0;
- }
- void sort(int x,int y,int z)
- {
- int temp;
- if(x>y)
- {
- temp=x;x=y;y=temp;
- }
- if(z<y) cout<<z<<','<<x<<','<<y<<endl;
- else if(z<y) cout<<x<<','<<z<<','<<y<<endl;
- else cout<<x<<','<<y<<','<<z<<endl;
- }
i 输入:3 6 10运行 输出:3 6 10回车
ii输入:6 3 10运行 输出:3 6 10回车
iii输入:10 6 3运行 输出:3 6 10回车
iv输入:10,6,3运行 输出:当输入分号时,按回车运行,程序不执行,无输出????
阅读(520) | 评论(0) | 转发(0) |