#include <iostream> #include <cmath> #include <math.h> #include <fstream> #include <istream> using namespace std; int main() { char str[100]; system("chcp 1251");; ifstream file("Text.txt"); if(!file.is_open()) { cout << "Ошибка: файл не найден.\n"; } else { file.getline(str, 100, 'end'); file.close(); } ofstream newFile("New.txt"); char one[100], two[100], three[100]; int i = 0; int j = 0; while (str[i] != '!' && str[i] != '?' && str[i] != '.') { one[j] = str[i]; i++; j++; } one[i] = str[i]; j = 0; i++; while (str[i] != '!' && str[i] != '?' && str[i] != '.') { two[j] = str[i]; i++; j++; } two[j] = str[i]; i++; j = 0; while (str[i] != '!' && str[i] != '?' && str[i] != '.') { three[j] = str[i]; i++; j++; } three[j] = str[i]; i = 0; while (three[i] != '.' && three[i] != '!' && three[i] != '?') { newFile << three[i]; i++; } newFile << three[i]; i = 0; while (two[i] != '.' && two[i] != '!' && two[i] != '?') { newFile << two[i]; i++; } newFile << two[i]; i = 0; while (one[i] != '.' && one[i] != '!' && one[i] != '?') { newFile << one[i]; i++; } newFile << one[i]; newFile.close(); }
Всё ещё неправильно :( Оберните код в теги: 3 символа ` до и после кода (в случае одиночной конструкции достаточно 1 ` с обеих сторон). Спасибо!
Обсуждают сегодня