- Desde
- 12 Oct 2013
- Mensajes
- 41
Por favor, ten en cuenta 📝 que si deseas hacer un trato 🤝 con este usuario, está baneado 🔒.
PHP:
#include<string.h>
#include<iostream>
using namespace std;
int len, n=0;
string chk4palindrosity(string thestr)
{
if(thestr[0] == thestr[thestr.length() - 1])
{
n++;
if(n == len / 2)
return "Si es palindromo!";
thestr.erase(0, 1);
thestr.erase(thestr.length() - 1, 1);
return chk4palindrosity(thestr);
}
else
return "No es palindromo";
}
int main()
{
char inputf[50]={0}, input[50], *parte;
cout<<"Introduce un palindromo: "; cin.getline(input, '');
parte = strtok(input, ";) " //
strcat(inputf, parte); //
while((parte = strtok(NULL, " ";) != NULL) //
strcat(inputf, parte); //
string thestr(inputf); //
len = thestr.length(); //
if(len == 1)
cout << "Si es palindromo!";
else
cout << chk4palindrosity(thestr); //
cin.get();
}