Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- using namespace std;
- int main()
- {
- int warunek=0;
- string kolorek, kolor_pob;
- cout<<"Podaj kolor"<<endl;
- cin>>kolorek;
- string linia;
- fstream plik;
- plik.open("plik2.txt", ios::in);
- if(plik.good()==false) cout<<"Nie mozna otworzyc pliku!";
- while (getline(plik, linia))
- {
- {
- kolor_pob=linia;
- }
- if (kolor_pob==kolorek)
- {
- warunek++;
- }
- }
- plik.close();
- cout<<"Ilosc wysapien tego koloru to: "<<warunek<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement