fork download
  1. #include <iostream>
  2. using namespace std;
  3. //Palindromos.
  4. bool esPalindromo (string p){
  5. int i=0, j=p.length() -1;
  6. while (i<j){
  7. if (p[i] != p[j]) break;
  8. i++; j--;
  9. }
  10. if (i>=j) return true;
  11. else return false;
  12.  
  13. }
  14.  
  15. int main()
  16. {
  17. string palabra;
  18. int n,i;
  19. bool r;
  20. cin >> n;
  21. for (i=1; i<=n; i++){
  22. cin >> palabra;
  23. r = esPalindromo (palabra);
  24. if (r) cout << "P" << endl;
  25. else cout << "NP" << endl;
  26. }
  27. return 0;
  28. }
Success #stdin #stdout 0s 5264KB
stdin
3
salas
gatos
ana
stdout
P
NP
P