c语言设计程序判断输入的是大写或小写字母或其他字符?用if else 语句
5个回答
展开全部
#include<stdio.h>
main()
{
char ch ;
printf("从键盘输入一个字符\n");
ch=getchar();
if(97<=ch && ch<=122)
{
printf("该字符为小写字母");
putchar('\n');
}
else if(65<=ch && ch<=90)
{
printf("该字符为大写字母");
putchar('\n');
}
else if(48 <=ch && ch<=57)
{
printf("该字符为数字");
putchar('\n');
}
else if(ch == 32)
{
printf("该字符为空格");;
putchar('\n');
}
else
{
printf("该字符为其它字符");
putchar('\n');
}
}
main()
{
char ch ;
printf("从键盘输入一个字符\n");
ch=getchar();
if(97<=ch && ch<=122)
{
printf("该字符为小写字母");
putchar('\n');
}
else if(65<=ch && ch<=90)
{
printf("该字符为大写字母");
putchar('\n');
}
else if(48 <=ch && ch<=57)
{
printf("该字符为数字");
putchar('\n');
}
else if(ch == 32)
{
printf("该字符为空格");;
putchar('\n');
}
else
{
printf("该字符为其它字符");
putchar('\n');
}
}
展开全部
#include <stdio.h>
#include <conio.h>
int main() {
int ch;
while((ch = _getch()) != '\r') {
if(ch >= 'A' && ch <= 'Z')
printf("%c:大写字母\n",ch);
else if(ch >= 'a' && ch <= 'z')
printf("%c:小写字母\n",ch);
else if(ch >= '0' && ch <= '9')
printf("%c:数字字符\n",ch);
else printf("其他字符\n");
}
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
scantf(%s,&a);
if(a>='a'&&a<='z') printf("%s是小写字母",a);
else if(a>='A'&&a<='Z') printf("%s是大写字母",a);
else printf("%s是其他字符",a);
if(a>='a'&&a<='z') printf("%s是小写字母",a);
else if(a>='A'&&a<='Z') printf("%s是大写字母",a);
else printf("%s是其他字符",a);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
main(){
char x;
scanf("%c",&x);
if(x>='a'&&x<='z')
printf("%c 为小写字母 ",x);
else if(x>='A'&&x<='Z')
printf("%c 为大写字母",x);
else printf("%c 是其他字符",x);}
char x;
scanf("%c",&x);
if(x>='a'&&x<='z')
printf("%c 为小写字母 ",x);
else if(x>='A'&&x<='Z')
printf("%c 为大写字母",x);
else printf("%c 是其他字符",x);}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include "stdio.h"
void main()
{
char temp;
temp=getch()();
if(temp>='a'&&temp<='z')
printf("xiao xie zi mu");
else if(temp>='A'&&temp<='Z')
printf("da xie zi mu");
if(temp>='0'&&temp<='9')
printf("shuzi");
else printf("other zi mu");
}
void main()
{
char temp;
temp=getch()();
if(temp>='a'&&temp<='z')
printf("xiao xie zi mu");
else if(temp>='A'&&temp<='Z')
printf("da xie zi mu");
if(temp>='0'&&temp<='9')
printf("shuzi");
else printf("other zi mu");
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询