【Java】统计字符个数

news/2024/11/29 9:50:33/
package day4;
//字数统计
import java.util.Scanner;public class StringDemo3 {public static void main(String[] args) {Scanner sc=new Scanner(System.in);System.out.println("请输入一个字符串");String line = sc.nextLine();//        统计三种字符个数int bigCount=0;int smallCount=0;int numberCount=0;for(int i=0;i<line.length();i++){char ch= line.charAt(i);
//            判断属于哪种类型if (ch>='A'&&ch<='Z'){bigCount++;}else if (ch>='a'&&ch<='z'){smallCount++;}if (ch>='0'&&ch<='9'){numberCount++;}}System.out.println("大写个数:"+bigCount+","+"小写个数"+smallCount+','+"数字个数"+numberCount);}
}


http://www.ppmy.cn/news/487264.html

相关文章

Java统计英文字母、空格、数字和其它字符的个数

Java统计英文字母、空格、数字和其它字符的个数 输入一行字符&#xff0c;分别统计出其中英文字母、空格、数字和其它字符的个数. 方法一&#xff1a; package test; import java.util.Scanner; public class Chuan {public static void main(String[] args) {Scanner scnew…

用Python统计字符串个数

1.题目 输入一行字符&#xff0c;分别统计出其中英文字母、空格、数字和其它字符的个数。 2.程序分析 利用while语句,条件为输入的字符不为’\n’. from pip._vendor.distlib.compat import raw_inputs raw_input(请输入字符串:\n) letters 0 space 0 digit 0 others …

将数字转换为字符

1.使用sprintf函数(数字可以从头开始转换) #include <stdio.h> #include <string.h>int main() {int num 0;char str[1024] {0};printf("please input num which you want to change:\n");scanf("%d",&num);sprintf(str,"%d"…

C语言 统计含有中文的字符串中的字数、 字符数和行数

输人一段含西文字符和中文字符的正文 &#xff0c;统计字数、 字符数和行数。字是指一个中文字符或一个西文字符串(由空白符分隔);字符是指一个西文字符或一个中文字 符;空白符是指空格或回车或水平制表Tab #include <stdio.h> int main() {char c;int cs 0,words0,row…

js获取字符长度字节数

该方法将根据每个字符编码&#xff0c;判断当前字符是单字节还是双字节&#xff0c;然后统计字符串的字节长度。 onLoad() {this.wordLength(我们啊123)}wordLength(e) {var length 0var arr e.split()arr.map(function(char) {if (char.charCodeAt(0) > 255) {//字符编码…

位,字节,字,字符的关系和区别

位 位是最基本的概念&#xff0c;在计算机中&#xff0c;由于只有逻辑0和逻辑1的存在&#xff0c;因此很多东西、动作、数字都要表示为一串二进制的字码例如&#xff1a; 1001 0000 1101等等。其中每一个逻辑0或者1便是一个位。例如这个例子里的1000 1110共有八个位&#xff0…

(菜鸟python)统计字符串的字符数和标点数

统计字符串的字符数和标点数 输入&#xff1a;字符串 输出&#xff1a;字符数(中文和英语都算一个字符数),标点数&#xff08;不包括括号&#xff09; 例如: 输入&#xff1a;s "abcdefg123!!!..” 输出&#xff1a;10 8 代码 s input() cha bd 0 for i in s:if i…

word每行字符数上限_word怎么限制每行字数

大家好&#xff0c;我是时间财富网智能客服时间君&#xff0c;上述问题将由我为大家进行解答。 word限制每行字数的方法如下&#xff1a; 1、首先打开需要处理的文档&#xff0c;然后点击菜单栏上的“布局”。 2、接着再点击“页面设置”右下角的“小箭头”&#xff0c;即会弹出…