以下是一个用C语言实现回文数字的生成的示例代码:
#include <stdio.h>
int isPalindrome(int num) {
int reversedNum = 0;
int originalNum = num;
while (num > 0) {
reversedNum = reversedNum * 10 + num % 10;
num /= 10;
}
if (reversedNum == originalNum) {
return 1;
} else {
return 0;
}
}
int main() {
int num = 0;
int count = 0;
printf("Enter the number of palindrome numbers to generate: ");
scanf("%d", &count);
printf("Palindrome numbers:\n");
while (count > 0) {
if (isPalindrome(num)) {
printf("%d\n", num);
count--;
}
num++;
}
return 0;
}
这段代码首先定义了一个isPalindrome
函数来判断一个数字是否为回文数字,然后在main
函数中生成指定数量的回文数字并输出。用户可以输入要生成的回文数字的数量,程序将会输出相应数量的回文数字。