欢迎访问 生活随笔!

生活随笔

当前位置: 首页 >

反转字符串中的元音字符_C程序消除字符串中的所有元音

发布时间:2023/12/1 61 豆豆
生活随笔 收集整理的这篇文章主要介绍了 反转字符串中的元音字符_C程序消除字符串中的所有元音 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

反转字符串中的元音字符

Given a string and we have to eliminate/ remove all vowels from the string using C program.

给定一个字符串,我们必须使用C程序从字符串中消除/删除所有元音。

To eliminate/remove the vowels

消除/删除元音

  • We will traverse (reach) each elements by using a loop

    我们将使用循环遍历(到达)每个元素

  • And, check the each element, if any element found as vowel, we will remove that shifting all other elements to the left

    并且,检查每个元素,如果发现任何元素为元音,我们将删除将所有其他元素向左移动的操作

  • Finally, we will print the string - that will be a string without the vowels

    最后,我们将打印字符串-这将是没有元音的字符串

Example:

例:

Input:String is: "Hello World"Output:String after removing vowels: "Hll Wrld"

程序从C的字符串中消除所有元音 (Program to eliminate all vowels from the string in C)

.minHeight{min-height: 250px;}@media (min-width: 1025px){.minHeight{min-height: 90px;}} .minHeight{min-height: 250px;}@media (min-width: 1025px){.minHeight{min-height: 90px;}} /* C program to eliminate all the vowels * from the entered string */ #include <stdio.h> #include <string.h>int main() {char string[50] = { 0 };int length = 0, i = 0, j = 0, k = 0, count = 0;printf("\nEnter the string : ");gets(string);length = strlen(string);count = length;for (j = 0; j < length;) {switch (string[j]) {case 'a':case 'A':case 'e':case 'E':case 'i':case 'I':case 'o':case 'O':case 'u':case 'U':for (k = j; k < count; k++) {string[k] = string[k + 1];//printf("\nstring : %s",string);}count--;break;default:j++;}}string[count] = '\0';printf("Final string is : %s", string);return 0; }

Output

输出量

Enter the string : Hello World Final string is : Hll Wrld

翻译自: https://www.includehelp.com/c-programs/eliminate-all-vowels-from-a-string.aspx

反转字符串中的元音字符

总结

以上是生活随笔为你收集整理的反转字符串中的元音字符_C程序消除字符串中的所有元音的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。