๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
C++

[๋ช…ํ’ˆ C++] 9์žฅ ์—ฐ์Šต๋ฌธ์ œ

by Meaning_ 2022. 12. 5.
728x90
๋ฐ˜์‘ํ˜•

๐Ÿฅ‘ ๋“ค์–ด๊ฐ€๊ธฐ ์ „์—

 

- ์ด ์žฅ์€ ๊ฐ€์ƒํ•จ์ˆ˜์™€ ์ˆœ์ˆ˜๊ฐ€์ƒํ•จ์ˆ˜๋ฅผ ๋ฐฐ์šด๋‹ค.

- ๊ฐ€์ƒํ•จ์ˆ˜๋Š” ๋™์  ๋ฐ”์ธ๋”ฉ์„ ํ†ตํ•ด ํ”„๋กœ๊ทธ๋žจ ์‹คํ–‰ ์‹œ ํ•จ์ˆ˜๋ฅผ ํŒŒ์•…ํ•œ๋‹ค.

  => ์žฌ์ •์˜ ๋œ ํ•จ์ˆ˜๊ฐ€ ์žˆ์„ ๊ฒฝ์šฐ, ์žฌ์ •์˜๋œ ํ•จ์ˆ˜๋ฅผ ์˜ฌ๋ฆฐ๋‹ค.

  => ์žฌ์ •์˜ ๋œ ํ•จ์ˆ˜๊ฐ€ ์—†์„ ๊ฒฝ์šฐ, ๊ฐ€์ƒํ•จ์ˆ˜๋ฅผ ์˜ฌ๋ฆฐ๋‹ค.

- ์ˆœ์ˆ˜๊ฐ€์ƒํ•จ์ˆ˜๋Š” ๋ฐ”๋””๋ฅผ ๋‘์ง€ ์•Š๊ธฐ์— ์ž์‹ ํด๋ž˜์Šค์—์„œ ๋ฐ˜๋“œ์‹œ ์˜ค๋ฒ„๋ผ์ด๋”ฉ์„ ํ•ด์•ผํ•œ๋‹ค.

- ๊ฐ€์ƒํ•จ์ˆ˜๋Š” ์ž์‹ ํด๋ž˜์Šค์—๊ฒŒ ์˜ค๋ฒ„๋ผ์ด๋”ฉ์„ ๊ถŒ์žฅํ•œ๋‹ค. (ํ•„์ˆ˜๋Š” ์•„๋‹ˆ๋‹ค)

- ์ถ”์ƒ ํด๋ž˜์Šค๋Š” ์ˆœ์ˆ˜ ๊ฐ€์ƒํ•จ์ˆ˜๋ฅผ ํ•˜๋‚˜๋ผ๋„ ํฌํ•จํ•˜๊ณ  ์žˆ๋Š” ํด๋ž˜์Šค์ด๋‹ค. -> ๊ฐ์ฒด๋กœ ์ฐ์–ด๋‚ผ ์ˆ˜ ์—†๋‹ค!

 

 

โœจ์ˆœ์ˆ˜ ๊ฐ€์ƒํ•จ์ˆ˜์˜ ์ ‘๊ทผ์ง€์ •์ž๊ฐ€ protected์ด๋ฉด ์ž์‹ํด๋ž˜์Šค์—์„œ ์žฌ์ •์˜ํ•  ๋•Œ๋„ protected์—์„œ ์žฌ์ •์˜ ํ•ด์ค˜์•ผ ํ•œ๋‹ค!

 

3๋ฒˆ

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
#include <iostream>
#include <string>
#include<cmath>
#include <ctime>
#include<algorithm>
 
using namespace std;
 
class LoopAdder {
    string name;
    int x, y, sum;
    void read();
    void write();
 
protected:
    LoopAdder(string name = "") {
        this->name = name;
    }
    int getX() {
        return x;
    }
    int getY() {
        return y;
    }
 
    virtual int calculate() = 0// ์ˆœ์ˆ˜๊ฐ€์ƒํ•จ์ˆ˜
    //์ˆœ์ˆ˜๊ฐ€์ƒํ•จ์ˆ˜๋ฅผ ํ•˜๋‚˜๋ผ๋„ ๊ฐ€์ง€๊ณ  ์žˆ์œผ๋ฉด ์ถ”์ƒ ํด๋ž˜์Šค 
 
public:
    void run();
};
 
class ForLoopAdder :public LoopAdder {
 
protected:
    
    int calculate(); //์ˆœ์ˆ˜ ๊ฐ€์ƒํ•จ์ˆ˜๋Š” ๋ฌด์กฐ๊ฑด ์žฌ์ •์˜๋ฅผ ํ•ด์•ผ๋งŒ ํ•œ๋‹ค.
 
public:
    ForLoopAdder(string name);
 
};
 
ForLoopAdder::ForLoopAdder(string name) :LoopAdder(name) {
 
}
 
int ForLoopAdder::calculate() {
    int tot = 0;
    for (int i = getX(); i <= getY(); i++) {
        tot += i;
    }
 
    return tot;
}
 
void LoopAdder::read() {
    cout << name << ":" << endl;
    cout << "์ฒ˜์Œ ์ˆ˜์—์„œ ๋‘๋ฒˆ์งธ ์ˆ˜๊นŒ์ง€ ๋”ํ•ฉ๋‹ˆ๋‹ค. ๋‘ ์ˆ˜๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”. >> ";
    cin >> x >> y;
}
 
 
void LoopAdder::write() {
    cout << x << "์—์„œ " << y << "๊นŒ์ง€์˜ ํ•ฉ = " << sum << " ์ž…๋‹ˆ๋‹ค" << endl;
}
 
void LoopAdder::run() {
    read();//x,y๋ฅผ ์ฝ๋Š”๋‹ค.
    sum = calculate(); //๋ฃจํ”„๋ฅผ ๋Œ๋ฉด์„œ ๊ณ„์‚ฐ 
    write();//๊ฒฐ๊ณผ sum์„ ์ถœ๋ ฅ
}
int main() {
 
    ForLoopAdder forLoop("For Loop");
    forLoop.run();
 
 
}
cs

 

 

4๋ฒˆ

 

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
#include <iostream>
#include <string>
#include<cmath>
#include <ctime>
#include<algorithm>
 
using namespace std;
 
class LoopAdder {
    string name;
    int x, y, sum;
    void read();
    void write();
 
protected:
    LoopAdder(string name = "") {
        this->name = name;
    }
    int getX() {
        return x;
    }
    int getY() {
        return y;
    }
 
    virtual int calculate() = 0// ์ˆœ์ˆ˜๊ฐ€์ƒํ•จ์ˆ˜
    //์ˆœ์ˆ˜๊ฐ€์ƒํ•จ์ˆ˜๋ฅผ ํ•˜๋‚˜๋ผ๋„ ๊ฐ€์ง€๊ณ  ์žˆ์œผ๋ฉด ์ถ”์ƒ ํด๋ž˜์Šค 
 
public:
    void run();
};
 
class ForLoopAdder :public LoopAdder {
 
protected:
    
    int calculate(); //์ˆœ์ˆ˜ ๊ฐ€์ƒํ•จ์ˆ˜๋Š” ๋ฌด์กฐ๊ฑด ์žฌ์ •์˜๋ฅผ ํ•ด์•ผ๋งŒ ํ•œ๋‹ค.
 
public:
    ForLoopAdder(string name);
 
};
 
ForLoopAdder::ForLoopAdder(string name) :LoopAdder(name) {
 
}
 
int ForLoopAdder::calculate() {
    int tot = 0;
    for (int i = getX(); i <= getY(); i++) {
        tot += i;
    }
 
    return tot;
}
 
void LoopAdder::read() {
    cout << name << ":" << endl;
    cout << "์ฒ˜์Œ ์ˆ˜์—์„œ ๋‘๋ฒˆ์งธ ์ˆ˜๊นŒ์ง€ ๋”ํ•ฉ๋‹ˆ๋‹ค. ๋‘ ์ˆ˜๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”. >> ";
    cin >> x >> y;
}
 
 
void LoopAdder::write() {
    cout << x << "์—์„œ " << y << "๊นŒ์ง€์˜ ํ•ฉ = " << sum << " ์ž…๋‹ˆ๋‹ค" << endl;
}
 
void LoopAdder::run() {
    read();//x,y๋ฅผ ์ฝ๋Š”๋‹ค.
    sum = calculate(); //๋ฃจํ”„๋ฅผ ๋Œ๋ฉด์„œ ๊ณ„์‚ฐ 
    write();//๊ฒฐ๊ณผ sum์„ ์ถœ๋ ฅ
}
 
class WhileLoopAdder : public LoopAdder {
 
public:
    WhileLoopAdder(string name);
 
protected:
    int calculate();
 
};
 
class DoWhileLoopAdder :public LoopAdder {
public:
    DoWhileLoopAdder(string name);
 
protected:
    int calculate();
 
};
 
WhileLoopAdder::WhileLoopAdder(string name) :LoopAdder(name) {
 
}
 
int WhileLoopAdder::calculate() {
 
    int total = 0;
    int start = getX();
    while (start <= getY()) {
        total += start;
        start++;
    }
 
    return total;
}
 
 
DoWhileLoopAdder::DoWhileLoopAdder(string name) : LoopAdder(name) {
 
}
 
int DoWhileLoopAdder::calculate(){
    int total = 0;
    int start = getX();
    do {
        total += start;
        start++;
    } while (start <= getY());
 
    return total;
}
 
 
int main() {
 
    ForLoopAdder forLoop("For Loop");
    forLoop.run();
 
    WhileLoopAdder whileLoop("While Loop");
    DoWhileLoopAdder doWhileLoop("Do while Loop");
 
    whileLoop.run();
    doWhileLoop.run();
 
 
 
}
cs

 

728x90
๋ฐ˜์‘ํ˜•

๋Œ“๊ธ€