码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA 统计键盘输入的一个字符串中的数字,字母大小写和其他。

时间:2019-05-04 00:23:25      阅读:506      评论:0      收藏:0      [点我收藏+]

标签:imp   static   java   upper   字符串   system.in   题目   com   code   

package Code503;

import java.util.Scanner;
/*
题目:
统计键盘输入的一个字符串中的数字,字母大小写和其他。
*/

public class CodeStringCount {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入一个字符串");
String input = scanner.next();
int countUpper = 0;
int countLower = 0;
int countNumber= 0;
int countOther= 0;
//将字符串转为字符数组
char[] array = input.toCharArray();
for (int i = 0; i < array.length; i++) {
char ch = array[i];
if (‘A‘<=ch&&ch<=‘Z‘){
countUpper++;
}else if (‘a‘<=ch&&ch<=‘z‘){
countLower++;
}else if (‘0‘<=ch&&ch<=‘9‘){
countNumber++;
}else{
countOther++;
}
}
System.out.println("Lower"+countLower+"Upper"+countUpper+"Number"+countNumber+"Other"+countOther);
}
}
运行代码↓
技术图片

 



JAVA 统计键盘输入的一个字符串中的数字,字母大小写和其他。

标签:imp   static   java   upper   字符串   system.in   题目   com   code   

原文地址:https://www.cnblogs.com/Ssinoo/p/10806932.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!