Ricko |
Wysłany: Śro 12:27, 17 Kwi 2013 Temat postu: STUDIA: Liczenie liter |
|
Cytat: |
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <cstring>
using namespace std;
int main(int argc, char *argv[])
{
char x;
int l=0;
ifstream odczyt("latarnik.txt");
odczyt>>noskipws;
while (odczyt>>x)
{
if (x == 'a') l++;
cout<<x;
}
cout<<endl<<endl;
cout<<"a wystapilo "<<l<<" razy"<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}
|
|
|