Napisz program, który odczyta tekst z pliku, wypisze go na ekranie oraz poda informację, ile w tym pliku było zdań Przez zdanie rozumiemy ciąg znaków zakończony kropką. c++
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
#include <fstream>
#include <string>
int main()
{
using namespace std;
ifstream object;
object.open("tekst.txt");
string word;
int licznik = 0;
while(!object.eof())
{
getline(object, word);
cout << word;
cout << endl;
for (int i = 0; i < word.size(); i++)
{
if (word[i] == '.')
++licznik;
}
}
cout << endl << "Ilosc zdan w tekscie: " << licznik;
object.close();
return 0;
}