解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); String n=scanner.nextLine(); char a[]=n.toCharArray(); int word=0,digit=0,space=0,other=0; for(int i=0;i<a.length;i++) { if(Character.isLetter(a[i])) word++; else if(Character.isDigit(a[i])) digit++; else if(a[i]==' ') space++; else other++; } System.out.print(word+" "+digit+" "+space+" "+other); } }
0.0分
0 人评分
不知道哪里错了浏览:1226 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:549 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:760 |
简单的a+b (C语言代码)浏览:674 |
WU-拆分位数 (C++代码)浏览:819 |
水仙花 (C语言代码)浏览:1163 |
DNA (C语言代码)浏览:798 |
IP判断 (C语言代码)浏览:592 |
矩阵的对角线之和 (C语言代码)浏览:1401 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:548 |