-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshowFigCPP.pp
executable file
·199 lines (155 loc) · 2.46 KB
/
showFigCPP.pp
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
//c++가 보이는 그림책 p58
int AddNum(int int);
int main()
{
int x = AddNum(10, 3);
return 0;
}
int AddNum(int num1, int num2)
{
return num1 + num2;
}
//c++가 보이는 그림책 p58
//p94 02
#include <iostream>
class myHouse {
int room;
public:
//mm = new room2;
//mm2 = new room3;
MyHouse ();
int getRoom();
private:
int total = 0;
};
MyHouse::getRoom() {
room = 0;
return room;
}
myHouse::MyHouse() {
total = 0;
}
//p94 04
#include <iostream>
namespace Book {
namespace Title
{
char * title;
}
}
char * title;
int main()
{
title = "CANDY";
title = "COOKIE";
std::cout<< title << "와" << title << std::endl;
return 0;
}
//p40
in main()
{
OrangeBox myOrangeBox;
myOrangeBox.Empty()
myOrangeBox.Add(5);
return 0;
}
class orangebox{
private:
int total = 0;
};
//p41
class OrangeBox {
public:
OrangeBox();
};
OrangeBox::OrangeBox()
{
tatal = 0;
}
int main()
{
OrangeBox myOragneBox
}
//p42
class OrangeBox {
public:
OrangeBox();
~OrangeBox();
};
OrangeBox::~OrangeBox()
{
printf("오렌지 상자 오브젝트 임무 완료\n");
}
int main()
{
OrangeBox myOrangeBox;
myOrangeBox.Add(5);
printf("상자 속의 오렌지 : %d개\n",myOrangeBox.GetTotal());
return 0;
}
//p45
void OrangeBox::Add(int addOrange)
{
total += addOrange;
if(total > 100) total = 100;
}
//p46
OrangeBox myOrangeBox;
myOrangeBox.total = 10;
myOrangeBox.total = 30;
myOrangeBox.total = 50;
//p47
void OrangeBox::Add(int addOrange)
{
total += addOrange;
}
void OrangeBox::Del(int delOrange)
{
total -= delOrange;
}
void OrangeBox::Add(int addOrange)
{
total += addOragne * 50;
}
void OrangeBox::Del(int delOrange)
{
total -= delOragne * 50;
}
//p97
#define MAX(a, b) { (a) > (b) ? (a) : (b) }
inline int MaxFunc(int a, int b) {
if( a > b ) return a;
return b;
}
int x1 = 10, y1 = 15;
int n1 = MAX(x1++, y1++);
cout << "x1 = " << x1 << "y1 = " << y1 << endl;
int x2 = 10, y2 = 15;
int n2 = MaxFunc(x2++, y2++);
cout << "x2 - " << x2 << "y2 = " << y2 << endl;
//p102
int num;
int &newnum = num;
//2
newnum = 13;
cout << "num = " << num << endl;
cout << "newnum = " << newnum << endl;
//3
int num;
int *newnum = #
*newnum = 400;
//p103
#include <iostream>
using namespace std;
int main()
{
int num = 0;
int &newnum = num;
num = 200;
cout << "num = " << num << endl;
cout << "newnum = " << newnum << endl;
newnum = 400;
cout << "num = " << num << endl;
cout << "newnum = " << newnum << endl;
return 0;
}