Problem A: 类的初体验
Time Limit: 1 Sec
Memory Limit: 128 MB
Submit: 723
Solved: 661
Description
定义一个类Data,只有一个double类型的属性和如下3个方法:
1. void init(double d);——初始化属性值。
2. double getValue()——获得属性值。
3. void showValue()——显示属性值。
Input
一个double类型的数值。
Output
输出输入的值2次,每次占一行。
Sample Input
3.14
Sample Output
3.143.14
HINT
Append Code
한국어< 中文 فارسی English ไทย All Copyright Reserved 2010-2011 SDUSTOJ TEAM
GPL2.0 2003-2011 HUSTOJ Project TEAM
Anything about the Problems, Please Contact Admin:admin
#include <iostream>
using namespace std;
class Data
{
private:
double x;
public:
void init(double x_){x = x_;}
double getValue(){return x;}
void showValue(){ cout << x <<endl;}
};
int main()
{
Data data;
double d;
cin>>d;
data.init(d);
cout<<data.getValue()<<endl;
data.showValue();
}