05 信燕 番外篇05 信燕 番外篇高清 04 信燕04 信燕高清 03 信燕03 信燕高清 02 信燕02 信燕高清

欢迎!朋友。

函数演示

#include <iostream> using namespace std; void show()   //void表示函数不会返回值 {  cout<<“Hello World!n”; } void main() {  show(); }

C++中的注释

//C++中的单行注释,”//”后的所有内容不会被编译 // // /*这是一个多行注释   中间所有的内容不   会被编译 */ // /*还有一种注释是这样的 可以这样用 /*这样可以用 /*这样可以实现从任意一个/*到//*/ //之间的注释 //*/

C++中的重名问题

#include <iostream> namespace a {     int     b=5; } namespace c {     int     b=8; } int main() {     int b=9;     std::cout<<b<<” “<<a::b<<” “<<c::b<<std::endl;     return 0; } //不同的名字空间可以存在相同的变量名

关于命名空间

#include <iostream> using namespace std; int main() {     cout<<“五年级一班数学成绩表n”;     cout<<“第一名葛优的成绩是:t”<<100;     cout<<endl;     cout<<“第二名郭德纲的成绩是:t”<<90+9;     cout<<endl;     cout<<“最后一名小刚的成绩是:t”<<(float)5/8;     cout<<endl;     return 0; } //还可以写成 #include <iostream> using std::cout; using std::endl; int main() {     cout<...

C++对输出格式的简单控制

#include <iostream> int main() {     std::cout<<“五年级一班数学成绩表n”;     std::cout<<“第一名葛优的成绩是:t”<<100;     std::cout<<std::endl;     std::cout<<“第二名郭德纲的成绩是:t”<<90+9;     std::cout<<std::endl;     std::cout<<“最后一名小刚的成绩是:t”<<(float)5/8;     std::cout<<std::endl;     return 0; } //以上是C++对输出格式的简单控制实例。

一个类似Hello World 的程序

#include <iostream> int main() {     std::cout<<“Hello World!n”;     std::cout<<“我喜欢C++!n”;     int x;     std::cin>>x;     std::cout<<x;     return 0; }

传递对象的练习

#include <iostream> using namespace std; class cat { public:  cat();  cat(int,int,int);  cat(cat &);  ~cat();  void setage(int x)  {   cout<<“执行setage函数设置为:”<<x<<endl;   itsage=x;  }  void setweight(int x)  {   cout<<“执行setweight函数设置为:”<<x<<endl;   itsweight=x;  }  void setheight(int x)  {   cout<<“执行setheight函数设置为:”<<x<<endl;   itsheight=x;  }  int getage ()  {   cout&l...

一个计算标准体重的小程序

匆匆忙忙,弄了一个计算身高的程序。实现这么简单的功能不需要100多行,这样写趁机熟悉一下C++的对象。当然程序还可以优化。不高兴写了,这个东西再写下去有点儿无聊。 #include <iostream> //这是一个简单的程序,用来测试身材,用指针操作对象; using namespace std; enum Choice{ ShowMenu=1, SetInfo, ShowCalc, Help, Quit }; class Human { public: Human(int Age,double Height,double Weight); ~Human(); void SetAge(int Age){ItsAge=Age;} void SetHeight(double Height) {ItsHeight=Height;} void SetWeight(double W...

QQ空间动态发布到 Windows Live

QQ空间动态发布到 Windows Live

  这个功能推出已久,自从微软去年宣布将关闭其 Live Space ,没过多久就看到了Live和QQ空间的绑定功能。开通这个功能MSN上的好友就可以看到我们在QQ空间的更新内容。具体的开通方法是访问你的QQ空间设置,在“动态发布”设置中关联你的MSN帐号。

QQ大战360一审宣判 360不正当竞争赔偿40万元

  人民网北京4月26日电 (京华时报记者刘杰)“QQ大战360”案件有了新进展。昨天上午,北京市朝阳区法院作出一审宣判,认定360构成不正当竞争,判决北京奇虎等三公司停止发行“360隐私保护器软件V1.0BETA版”,连续30天消除影响,并赔偿腾讯公司40万元。   此案中,QQ软件的开发者腾讯科技(深圳)有限公司和运营者深圳腾讯计算机系统有限公司以不正当竞争为由,起诉奇智软件(北京)有限公司、北京奇虎科技有限公司和北京三际无限网络科技有限公司。   腾讯的代理人称,“QQ电脑管家”扫描硬盘的目的是为了查杀木马,根本没有上传过数...