// zadanie5.2.cpp : Defines the entry point for the console application.
#include "stdafx.h"
#include <string>
#include <iostream>
#include <fstream>
using namespace std;
int porownaj(string a, string b)
i nt i;
if (a. lengthO != b.lengthO) return 0; else
for (i =0; i < a.length(); i++)
if (a[i] != b[i]) return 0;
return 1;
int porównajLustro(string a, string b) i nt i;
if (a. length() != b.lengthO) return 0; else
for (i =0; i < a. lengthO; i++)
if (a[i] ! = b[b. lengthO-i-1]) return 0;
return 1;
int _tmain(int argc, _tchar* argv[])
string linia; string nowe[25]; int i Te[25]; int ile_lustro[2 5]; int i;
for (i =0; i <25; i++)
i 1 e [i ] = 0; ile_lustro[i] = 0;
ifstream plik_nowe("nowe.txt"); if (plik_nowe.is_open())
i = 0;
while (getline(plik_nowe, linia))
nowe[i] = linia; i++;
plik_nowe.close();
ifstream plik_slowa("slowa.txt"); if (plik_slowa.is_open())
while (getline(plik_slowa, linia))
for (i =0; i <25; i++)
plik_slowa.close();
« ile[i] « " " « ile_lustro[i] «
endl