本文介绍了如何使用命令行参数C编写C程序来检查元音或辅音的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
C program to check vowel or consonant using command line arguments
我尝试了什么:
What I have tried:
#include <stdio.h>
int main()
{
char ch;
printf("Input a character\n");
scanf("%c", &ch);
if ((ch >= 'a' && ch <= 'z') || (ch >= 'A' &&ch <= 'Z')) {
if (ch=='a' || ch=='A' || ch=='e' || ch=='E' || ch=='i' || ch=='I' || ch=='o' || ch=='O' || ch== 'u' || ch=='U')
printf("%c is a vowel.\n", ch);
else
printf("%c is a consonant.\n", ch);
}
else
printf("%c is neither a vowel nor a consonant.\n", ch);
return 0;
}
推荐答案
这篇关于如何使用命令行参数C编写C程序来检查元音或辅音的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!