-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClass719.cpp
executable file
·126 lines (85 loc) · 1.92 KB
/
Class719.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
//============================================================================
// Name : Class719.cpp
// Author :
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
#include <iostream>
using namespace std;
//An array is a homogeneous collection of data items. In contrast
//a struct is a heterogeneous collection of data items.
struct Cat {
string name;
string breed;
int age;
float wgt;
};
void clearArray(int num[ ], int size) {
//Is an array passed by value?? Let's test
for (int i = 0; i < size; i++) {
num[i] = 0;
}
}
void sample1( ) {
int list[ ] = { 10, 20, 30, 40, 50, 60};
for (int i = 0; i < 6; i++) {
cout << " " << list[i];
}
cout << endl;
clearArray(list, 6);
for (int i = 0; i < 6; i++) {
cout << " " << list[i];
}
cout << endl;
}
void sample2( ) {
Cat cat1, cat2;
cat1.name = "Puff Puff";
cat1.breed = "Mixed";
cat1.age = 3;
cat1.wgt = 13.5;
cout << cat1.name << endl;
cout << cat1.breed << endl;
cout << cat1.age << endl;
cout << cat1.wgt << endl;
// cout << cat1 << endl; //??
cat2 = cat1;
cout << cat2.name << endl;
cout << cat2.breed << endl;
cout << cat2.age << endl;
cout << cat2.wgt << endl;
cat2.age += 100;
cout << cat1.age << endl;
cout << cat2.age << endl;
}
void happyBday(Cat cat) {
cat.age += 1;
cout << cat.age << endl;
}
void sample3( ) {
Cat cat1;
cat1.name = "Puff Puff";
cat1.breed = "Mixed";
cat1.age = 3;
cat1.wgt = 13.5;
happyBday(cat1);
cout << cat1.age << endl;
}
void sample4( ) {
//Combine two composite types array and struct into one
//Here's an array of struct
Cat myPet[10];
myPet[0].name = "Bom Bom";
myPet[0].breed = "Maine Coon";
myPet[0].age = 10;
myPet[0].wgt = 9.8;
//...
}
int main() {
// sample1( );
//~ sample2( );
//~ sample3( );
sample4( );
return 0;
}