Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define _CRT_SECURE_NO_WARNINGS
- #include <iostream>
- #include <string>
- #include <fstream>
- #include <Windows.h>
- using namespace std;
- void to_lower(char* word) {
- for (int i = 0; i < strlen(word); i++) {
- if (word[i] >= 'А' && word[i] <= 'Я') {
- word[i] += 32;
- }
- }
- }
- int main() {
- SetConsoleCP(1251);
- SetConsoleOutputCP(1251);
- ifstream fin;
- fin.open("file.txt");
- if (!fin.is_open()) {
- cout << "Ошибка открытия файла" << endl;
- }
- else {
- int count = 0;
- bool type;
- char word[40], user_word[40];
- cout << "Введите слово для поиска: ";
- gets_s(user_word);
- cout << "Введите 0 для поиска с учетом регистра и 1 для поиска без учета регистра: ";
- cin >> type;
- if (type) {
- to_lower(user_word);
- }
- while (!fin.eof()) {
- fin >> word;
- if (type) {
- to_lower(word);
- }
- if (strstr(word, user_word)) {
- count++;
- }
- }
- cout << count << endl;
- fin.close();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement