print?01./*
02.* 程序的版權和版本聲明部分
03.* Copyright (c)2012, 煙台大學計算機學院學生
04.* All rightsreserved.
05.* 文件名稱:class.cpp
06.* 作者:王立強
07.* 完成日期: 2013年4月7日
08.* 版本號: v1.0
09.* 輸入描述:略
10.* 問題描述:略
11.* 程序輸出:略
12.*/
一
#include<iostream>
#include<stdlib.h>
using namespace std;
class C
{private:
int x;
public:
C(int x){this->x = x;}
int getX() const {return x;}
};
int main()
{ const C c(5);
cout<<c.getX()<<endl;
return 0;
}
二
#include<iostream>
#include<stdlib.h>
using namespace std;
class C
{private:
int x;
public:
C(int x){this->x = x;}
int getX(){return x;}
};
int main()
{ C c(5);
cout<<c.getX()<<endl;
return 0;
}
01./*
02.* 程序的版權和版本聲明部分
03.* Copyright (c)2012, 煙台大學計算機學院學生
04.* All rightsreserved.
05.* 文件名稱:class.cpp
06.* 作者:王立強
07.* 完成日期: 2013年4月7日
08.* 版本號: v1.0
09.* 輸入描述:略
10.* 問題描述:略
11.* 程序輸出:略
12.*/
一
#include<iostream>
#include<stdlib.h>
using namespace std;
class C
{private:
int x;
public:
C(int x){this->x = x;}
int getX() const {return x;}
};
int main()
{ const C c(5);
cout<<c.getX()<<endl;
return 0;
}
二
#include<iostream>
#include<stdlib.h>
using namespace std;
class C
{private:
int x;
public:
C(int x){this->x = x;}
int getX(){return x;}
};
int main()
{ C c(5);
cout<<c.getX()<<endl;
return 0;
}