117.info
人生若只如初见

C语言项目:开发一个回文诗生成器

#include #include

// Function to check if a string is palindrome int isPalindrome(char *str) { int len = strlen(str); for (int i = 0; i < len / 2; i++) { if (str[i] != str[len - i - 1]) { return 0; } } return 1; }

// Function to generate palindrome poem using input line void generatePalindromePoem(char *line) { // Split the line into words char *word = strtok(line, " “); while (word != NULL) { // Reverse the word and print it int len = strlen(word); for (int i = len - 1; i >= 0; i–) { printf(”%c", word[i]); } printf(" “); word = strtok(NULL, " “); } printf(”\n”); }

int main() { char line[100];

// Get input line from user
printf("Enter a line to generate palindrome poem: ");
fgets(line, sizeof(line), stdin);

// Remove newline character from input
line[strcspn(line, "\n")] = 0;

// Check if input line is palindrome
if (isPalindrome(line)) {
    // Generate palindrome poem
    generatePalindromePoem(line);
} else {
    printf("Input line is not a palindrome.\n");
}

return 0;

}

未经允许不得转载 » 本文链接:https://www.117.info/ask/feaf6AzsIBgRWAFA.html

推荐文章

  • C语言怎么调用sort函数实现升序排序

    在C语言中调用sort函数实现升序排序的步骤如下: 在程序中引入需要排序的数组和sort函数的头文件,如下所示: #include #include // 定义比较函数
    int comp...

  • c语言怎么定义一个二维数组

    在C语言中定义一个二维数组需要指定数组的行数和列数,例如定义一个3行4列的二维数组可以这样做:
    int array[3][4]; 这样就定义了一个名为array的3行4列的二...

  • c语言函数如何传递二维数组

    在C语言中,可以通过将二维数组的指针传递给函数来实现二维数组的传递。具体步骤如下: 在定义函数时,将参数声明为指向二维数组的指针,同时指定数组的列数。 v...

  • C语言中str的功能有哪些

    在C语言中,str是一个用于处理字符串的函数库,可以通过包含头文件来使用。str函数库提供了一系列操作字符串的函数,常见的功能包括: 字符串复制:strcpy()函数...

  • 利用C语言在二维数组中寻找回文序列

    下面是一个示例C程序,用来在一个二维数组中寻找回文序列:
    #include #include #define ROWS 4
    #define COLS 4 bool isPalindrome(int arr[], int siz...

  • C语言中通过命令行输入检测回文字符串

    下面是一个C语言程序,可以通过命令行输入一个字符串,然后判断该字符串是否是回文字符串(即正着读和倒着读都一样):
    #include #include int main(int ar...

  • 利用C语言编写跨平台的回文检测工具

    要实现一个跨平台的回文检测工具,可以使用C语言编写一个简单的控制台程序。下面是一个示例代码:
    #include #include #include int isPalindrome(char *str...

  • C语言中回文哈希的实现与应用

    回文哈希是一种用于判断字符串是否为回文的方法,它利用了哈希值的特性来快速判断字符串是否对称。
    实现回文哈希的方法如下:
    #include #include #def...