以下是一個用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
函數中生成指定數量的回文數字并輸出。用戶可以輸入要生成的回文數字的數量,程序將會輸出相應數量的回文數字。