解题思路:
注意事项:
参考代码:
#include<stdio.h>
int main()
{
char str[100];
char a[100];
int count = 0;
scanf("%s", &str);
int i = 0;
int size = sizeof(str) / sizeof(str[0]);
for (i = 0; i < size; i++)
{
if (str[i] == 'a' || str[i] == 'e' || str[i] == 'i' || str[i] == 'o' || str[i] == 'u')
{
a[count] = str[i];
count++;
}
}
int j = 0;
for (j = 0; j < count; j++)
{
if(a[j]=='a')
printf("%c", a[j]);
}
for (j = 0; j < count; j++)
{
if (a[j] == 'e')
printf("%c", a[j]);
}
for (j = 0; j < count; j++)
{
if (a[j] == 'i')
printf("%c", a[j]);
}
for (j = 0; j < count; j++)
{
if (a[j] == 'o')
printf("%c", a[j]);
}
for (j = 0; j < count; j++)
{
if (a[j] == 'u')
printf("%c", a[j]);
}
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:574 |
1009题解浏览:802 |
文科生的悲哀 (C语言代码)浏览:1538 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:903 |
简单的a+b (C语言代码)浏览:529 |
分解质因数 (C++代码)浏览:1561 |
【计算球体积】 (C语言代码)浏览:1619 |
C语言程序设计教程(第三版)课后习题8.1 (C++代码)浏览:612 |
龟兔赛跑预测 (C++代码)浏览:1213 |
简单的a+b (C语言代码)浏览:643 |