-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path27.cpp
59 lines (58 loc) · 932 Bytes
/
27.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include<iostream>
using namespace std;
class Array
{
private:
int data[10];
public:
Array()
{
for(int i=0;i<=9;i++)
data[i]=0;
} ;//数组初始化为0
int& getData(int i)
{
return data[i];
};//返回下标为i的数组元素引用
void print()
{
for(int i=0;i<=9;i++)
cout<<data[i]<<endl;
};//打印出所有数组元素的值
void input()
{
cout<<"Please input 10 numbers"<<endl;
for(int i=0;i<=9;i++)
cin>>data[i];
};//对所有数组元素进行输入
};
/*Array::Array()
{ for(int i=0;i<=9;i++)
data[i]=0;
}
int& Array::getData(int i)
{
return data[i];
}
void Array::print()
{
for(int i=0;i<=9;i++)
cout<<data[i]<<endl;
}
void Array::input()
{
cout<<"Please input 10 numbers"<<endl;
for(int i=0;i<=9;i++)
cin>>data[i];
}
*/
int main()
{
Array a;
a.print();
a.input();
int i;
cout<<"Please input one number"<<endl;
cout<<a.getData(i)<<endl;
return 0;
}