Tfe

Ongi etorri tfe-ren webgunera...

Old stuff/ecole_etude_fac_de_pau/licence_2/poo/palindrome.cc

(Deskargatu)
#include <iostream.h>





int palindrome(char *tab)
{
    int i=0;
    int taille = strlen(tab);
    while (i<(taille/2) && tab[i] == tab[taille-i-1])
    {
	i++;
    }
    return (i>= (taille/2));
}








int main()
{
    char test[50];
    cout << "Entez une chaine a tester : ";
    cin >> test;
    cout << (palindrome(test) ? "oui\n" : "non\n");	




}