标签: 算法

1 篇文章

判断整数回文
判断整数回文 问题 描述:判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 示例:输入:121;输出:true 答案 #include <stdio.h> #include <stdbool.h> bool isPalindrome(int x) { if (x < 0) ret…