-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtextstatistics.cpp
More file actions
40 lines (34 loc) · 1.3 KB
/
textstatistics.cpp
File metadata and controls
40 lines (34 loc) · 1.3 KB
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
#include "textstatistics.h"
void TextStatistics::add(TextStatistics &operand) {
if(this->charactercount == 0) {
this->charactercount = operand.getCharacterCount();
this->wordcount = operand.getWordCount();
this->sentencecount = operand.getSentenceCount();
this->syllablecount = operand.getSyllableCount();
} else if(operand.charactercount != 0) {
this->charactercount += operand.getCharacterCount();
this->wordcount += operand.getWordCount();
this->sentencecount += operand.getSentenceCount();
this->syllablecount += operand.getSyllableCount();
}
}
void TextStatistics::subtract(TextStatistics &operand) {
if(this->charactercount != 0 && operand.getCharacterCount() != 0) {
this->charactercount -= operand.getCharacterCount();
if(this->charactercount < 0) {
this->charactercount = 0;
}
this->wordcount -= operand.getWordCount();
if(this->wordcount < 0) {
this->wordcount = 0;
}
this->sentencecount -= operand.getSentenceCount();
if(this->sentencecount < 1) {
this->sentencecount = 1;
}
this->syllablecount -= operand.getSyllableCount();
if(this->syllablecount < 0) {
this->syllablecount = 0;
}
}
}