I was viewing the practice problem section and decided to give a go at them, anyways, this is my Palindrome dector code. Could someone just take a look at it and explain to me if there is a better way to execute this problem?
- michael
// Palindrome check by Michael Turbe (c) 2009
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main(void)
{
// system config
system("TITLE Palindrome");