2008年2月1日

C++中几种不同交换两个数的方法

摘要: #include<iostream>usingnamespacestd;voidswapr(int&a,int&b);voidswapp(int*a,int*b);voidswapv(inta,intb);intmain(){inta,b;cout<<"请输入a"<<endl;cin>>a;cout<<"请输入b"<... 阅读全文

posted @ 2008-02-01 13:22 浴盆 阅读(2244) 评论(0) 推荐(0) 编辑

C++中引用变量的用例

摘要: #include<iostream>usingnamespacestd;intmain(){inti=1;int&x=i;//对变量I的引用cout<<"i="<<i<<""<<"address="<<&i<<endl;cout<<"x="<<x<<""<&... 阅读全文

posted @ 2008-02-01 12:54 浴盆 阅读(462) 评论(0) 推荐(0) 编辑

关于strlen/sizeof函数在char和string类型中的应用

摘要: #include<iostream>usingnamespacestd;intmain(){//typedefstructstudent//{//charname[10];//charsex;//longsno;//floatscore[4];//}STU;////STUa[5];////cout<<sizeof(a)<<endl;////return0;cha... 阅读全文

posted @ 2008-02-01 10:01 浴盆 阅读(964) 评论(0) 推荐(0) 编辑

导航