Flask接口签名sign原理与实例代码浅析
292
2022-09-06
java判断各类型字符个数实例代码
目录描述输入描述:输出描述:
描述
输入一行字符串,分别统计出其中英文字母、空格、数字和其它字符的个数
输入描述:
控制台随机输入一串字符串
输出描述:
输出字符串中包含的英文字母个数,数字个数,空格个数,其它字符个数(格式为:英文字母x数字x空格x其他x),预设代码中已给出输出.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
int numbers = 0;
OZSzz int words = 0;
int space = 0;
int other = 0;
Scanner scanner = new Scanner(System.in);
String str = scanner.nextLine();
//write your code here......
System.out.println("英文字母"+words+"数字"+numbers+"空格"+space+"其他"+other);
}
}
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
int numbers = 0;
int words = 0;
int space = 0;
int other = 0;
Scanner scanner = new Scanner(System.in);
String str = scanner.nextLine();
//write your code here......
for(int i=0;i char c=str.charAt(i); if((c>='a' http://&& c<='z')|| (c>='A' && c<='Z')){ words++; continue; } if(c>='0' && c<='9' ){ numbers++; continue; } if(c==' '){ space++; continue; } else{ other++; continue; } } System.out.println("英文字母"+words+"数字"+numbers+"空格"+space+"其他"+other); } } 注意:每次计数完后要跳出循环,否则就取出的字符会挨个问一遍判断语句 出现问题
char c=str.charAt(i);
if((c>='a' http://&& c<='z')|| (c>='A' && c<='Z')){
words++;
continue;
}
if(c>='0' && c<='9' ){
numbers++;
continue;
}
if(c==' '){
space++;
continue;
}
else{
other++;
continue;
}
}
System.out.println("英文字母"+words+"数字"+numbers+"空格"+space+"其他"+other);
}
}
注意:每次计数完后要跳出循环,否则就取出的字符会挨个问一遍判断语句 出现问题
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~