- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
VC60面向对象程序设计程序设计举例
第2章 C++程序设计基础
【例2-1】 简单C++程序//examplech201.cpp
#include iostream.h //编译预处理void main() //main函数
{
char name[0]; //定义字符数组
coutWelcome to C++; //输出问候coutplease input your name:;
cinname; //从键盘输入 coutHello,name!endl;
coutYou Are Welcome!endl;
}
【例2-2】 转义字符的使用。
//examplech202.cpp
#includeiostream.h
void main()
{
coutThis is C++ programendl;
coutThis\tis\tC++\tprogramendl;
coutThis\nis\nC++\nprogramendl;
}
【例2-3】 变量的定义与使用。
//examplech203.cpp
main()
{
int a,b,c,x;
unsigned int u;
float u1;
double u2;
a=12;
b=-18;
u1=51.8;
u2=58.8;
c=28;u=b+c;
x=a+b;
u2=u1+u2;
cout”x=”xendl;
cout”u=”uendl;
cout”u2=”u2endl;
}
【例2-4】 字符型变量的应用。
//examplech204.cpp
includeiostream.h
void main()
{
int a1,a2;
char c1,c2,c3,c4;
a1=97;
a2=65;
c1=a1;
c2=a2;
c3=B;
c4=66;
couta1=a1endl;
couta2=a2endl;
coutC1=c1endl;
coutC2=c2endl;
coutC3=c3endl;
coutC4=c4endl;
}
【例2-5】 通过指针与引用等方式访问变量。
//examplech205.cpp
#includeiostream.h
void main()
{
double n=1.8;
doublen1=n;
n1=1.18;
coutn=n,n1=n1endl;
double n11=n1; //引用的传递效应
n1=1.118;
coutn=n,n1=n1//通过变量名及其引用分别访问
,n11=n11endl;
double* ptr=n;
double* p=ptr;
*p=1.218;
coutn=n,n1=n1
,n11=n11,*ptr=*ptr
,*p=*pendl; //通过指针访问
coutn=nendl;
cout*n=*nendl; //通过地址访问
}
【例2-6】 自增自减运算符的应用。
//examplech206.cpp
#includeiostream.h
void main()
{
int x,y;
x=17;
y=17;
coutx++=x++endl;
coutx=xendl;
coutx--=x--endl;
cout++y=++yendl;
cout--y=--yendl;
}
【例2-7】强制类型转换运算符的应用。
//examplech207.cpp
#includeiostream.h
void main()
{
double x;
int n;
x=158.158;
n=int(x);
coutn=nendl;
coutx=xendl;
}
【例2-8】 简单if语句的使用:判断某一年份是否闰年(经典的选择结构程序)。
//examplech208.cpp
#include iostream.h
void main(void)
{
int year;
cout请输入年份: ;
cinyear;
if ((year%4==0year%100!=0)||(year%400==0))
coutyear年是闰年!endl;
else
coutyear年不是闰年!endl;
}
【例2-9
您可能关注的文档
- The Creation of Splendor in Adversity like Robinson Crusoe,英美文学论文_629.doc
- The debt-deflation theory of great depressions,Irving Fisher,1933.doc
- The Design Of Intelligent Gas Meter6中英文翻译.doc
- The determinants of Foreign Direct Investment (FDI) in :外商直接投资(FDI)在决定因素.docx
- THE FACE SHOP(菲诗小铺)市场营销计划书.doc
- The Global Textile and Clothing Industry post theAgreement on Textiles and Clothing[外文翻译].doc
- The Impact of Enterprise Resource Planning Systems on Management ,商务英语论文_1012.doc
- The+Man+Who+Escaped(逃亡者)(适合初等水平阅读).doc
- THINKPAD_R400__BIOS设置win7.doc
- ThinkPad店面销售话述(公开版).doc
文档评论(0)