博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数
阅读量:6615 次
发布时间:2019-06-24

本文共 1289 字,大约阅读时间需要 4 分钟。

题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

程序分析:利用while语句,条件为输入的字符不为 '\n '. 

 

 

1 package com.li.FiftyAlgorthm; 2  3 import java.util.Scanner; 4  5 /** 6  * 题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。  7  *  8  * 程序分析:利用while语句,条件为输入的字符不为 '\n ' 9  * @author yejin10  */11 public class CharacterStatistics {12     static int digital = 0;13     static int character = 0;14     static int other = 0;15     static int blank = 0;16 17     public static void main(String[] args) {18         char[] ch = null;19         Scanner sc = new Scanner(System.in);20         String s = sc.nextLine();21         ch = s.toCharArray();22 23         for (int i = 0; i < ch.length; i++) {24             if (ch[i] >= '0' && ch[i] <= '9') {25                 digital++;26             } else if ((ch[i] >= 'a' && ch[i] <= 'z') || ch[i] > 'A'27                     && ch[i] <= 'Z') {28                 character++;29             } else if (ch[i] == ' ') {30                 blank++;31             } else {32                 other++;33             }34 35         }36         System.out.println("数字个数: " + digital);37         System.out.println("英文字母个数: " + character);38         System.out.println("空格个数: " + blank);39         System.out.println("其他字符个数:" + other);40     }41 }

 

转载于:https://www.cnblogs.com/justdoitba/p/7142719.html

你可能感兴趣的文章
离散卷积与自相关----------信号处理系列[原创]
查看>>
java 观察者模式
查看>>
Azure SQL Database (19) Stretch Database 概览
查看>>
VBA概述之在Office产品中创建自己的应用程序
查看>>
在C#中使用属性控件添加属性窗口
查看>>
linux内核驱动中对字符串的操作【转】
查看>>
delegate引用参数示例
查看>>
printf()详解之终极无惑
查看>>
交叉检验---训练数据,验证数据和测试数据
查看>>
Emacs中多个golang项目的配置方法
查看>>
Linux下的Backlight子系统(一)【转】
查看>>
AspNetPager分页控件配置
查看>>
【Android开发坑系列】之Fragment
查看>>
c++ 注册表的设置立即生效
查看>>
sql日期转换
查看>>
linux资源限制函数getrlimit,setrlimit(转载)【转】
查看>>
linux下热插拔事件的产生是怎样通知到用户空间,kobject_uevent_env之uevent【转】...
查看>>
备胎的养成记KeepAlived实现热备负载
查看>>
Android -- Scroller
查看>>
[XAML学习资料] XAML 概述一
查看>>