-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
81 lines (66 loc) · 1.72 KB
/
main.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
#include <iostream>
#include <fstream>
using namespace std;
const int MAX_SIZE = 2000;
struct Sentence {
public:
char litera;
char text[MAX_SIZE]{};
int index = 0;
char marker = '%';
void addChar(const char &inputChar) {
if (inputChar == '\n') {
return;
}
this->text[this->index] = inputChar;
this->index++;
}
bool isMarker(const char &inputChar) {
return inputChar == this->marker;
}
int countOfWord()
{
char alfa; // буква
int index = 0;
int counter = 0;
while (alfa != marker)
{
alfa = text[index];
if(alfa == litera)
if(text[index - 1] == ' ' || index == 0)counter++;
index++;
}
return counter;
}
void printer (string nameOfFile, int counter)
{
ofstream out;
out.open(nameOfFile, ios::app);
if (out.is_open()) {
out << "for letter " << litera << ", count = " << counter;
}
out.close();
}
};
int main() {
cout
<< "hello, this program can check how many word in this sentence have on first position have a certain letter\n"
"if you want start you need write name of file, and on next line write letter\n";
string input;
string outName;
Sentence line;
cin >> input;
cin >> outName;
cin >> line.litera;
ifstream inputFile(input);
if (inputFile.is_open()) {
char inputChar;
while (inputFile >> noskipws >> inputChar) {
line.addChar(inputChar);
}
line.addChar('%');
inputFile.close();
}
int result = line.countOfWord();
line.printer(outName,result);
}