summaryrefslogtreecommitdiff
path: root/testapp/docs/palindrome.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/docs/palindrome.cpp')
-rw-r--r--testapp/docs/palindrome.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/testapp/docs/palindrome.cpp b/testapp/docs/palindrome.cpp
new file mode 100644
index 0000000..aae5dd1
--- /dev/null
+++ b/testapp/docs/palindrome.cpp
@@ -0,0 +1,19 @@
+bool palindrome(int n)
+{
+ int n1, rev = 0, rem;
+ n1 = n;
+ while (n > 0)
+ {
+ rem = n % 10;
+ rev = rev * 10 + rem;
+ n = n / 10;
+ }
+ if (n1 == rev)
+ {
+ return true;
+ }
+ else
+ {
+ return false;
+ }
+}