c语言 从键盘上任意输入一个字符(字母大小写,数字,控制字符和其他字符)判断所属字符类型,只发
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言 从键盘上任意输入一个字符(字母大小写,数字,控制字符和其他字符)判断所属字符类型,只发相关的知识,希望对你有一定的参考价值。
c语言 从键盘上任意输入一个字符(字母大小写,数字,控制字符和其他字符)判断所属字符类型,只发大括号里的,课堂作业!!
#include <string.h>#include<stdio.h>
#define N 99
main()
char s[N];
int i,sum,num=0,letter=0,space=0,other=0;
gets(s);
sum=strlen(s);
for(i=0;i<sum;i++)
if(s[i]==' ') space++;
if((s[i]>=65&&s[i]<=90)||(s[i]>=97&&s[i]<=122)) letter++;
if(s[i]>=48&&s[i]<=57) num++;
other=sum-space-letter-num;
printf("数字%d个,字母%d个,空格%d个,其他字符%d个。",num,letter,space,other);
printf("\\n"); 参考技术A char ch;
scanf(“%c”,&ch);
if(ch=<'z'&&ch>='a')
printf(“lower letter!”);
else if(ch=<'Z'&&ch>='A')
printf(“capital letter”);
else if(ch=<'9'&&ch>='0')
printf(“digital character”) ;
else if(ch<0x32)
printf(“control character”);
else
printf(“other character”);
java 判断从键盘上任意输入的一个年份是不是为闰年
java编程
1、接收用户输入
2、判断该数字能否被400整除或者能被4整除但不能被100整除
3、输出结果
public static void main(String[] args)int year=0;
try
//定义接收用户输入的对象
Scanner input=new Scanner(System.in);
//接收用户输入
System.out.print("请输入一个年份:");
year=input.nextInt();
//判断是否是闰年
if(year%400==0 || (year%4==0&&year%100!=0))
System.out.println(year+"是闰年");
else
System.out.println(year+"不是闰年");
catch(Exception e)
System.out.println("请输入整数!");
参考技术A import java.io.*;
public class lianxi
public static void main(String args[])
int m=0;
try
System.out.print("请输入要判断的年数:");
BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
String line=in.readLine();
m=Integer.parseInt(line);
catch(IOException e)
if(m%4==0&&m%100!=0||m%400==0)
System.out.print(m+"年是瑞年");
else
System.out.print(m+"不是瑞年");
参考技术B import java.io.*;
public class lianxi
public static void main(String args[])
int m=0;
try
System.out.print("请输入要判断的年数:");
BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
String line=in.readLine();
m=Integer.parseInt(line);
catch(IOException e)
if(m%4==0&&m%100!=0||m%400==0)
System.out.print(m+"年是瑞年");
else
System.out.print(m+"不是瑞年");
以上是关于c语言 从键盘上任意输入一个字符(字母大小写,数字,控制字符和其他字符)判断所属字符类型,只发的主要内容,如果未能解决你的问题,请参考以下文章
C语言:从键盘输入一篇英文文本,统计每个英文字母(分大小写)及空格、数字、回车和其他字符,咋编?
C语言编程题:从键盘输入一串字符,统计其中的数字与字母个数并输出