import java.util.Scanner; //抄别人的 public class Main{ public static void main(String[] age){ Scanner in=new Scanner(System.in); int word = 0, number = 0, space = 0, others = 0; String ch=in.nextLine(); for(int i=0;i<ch.length();i++){ char c=ch.charAt(i);//依次取出每个字母 if ('a' <= c && c <= 'z' || 'A' <= c && c <= 'Z') { word++; } else if ('0' <= c && c <= '9') { number++; } else if (c == ' ') { space++; } else { others++; } }System.out.println(word+" "+number+" "+space+" "+others); } }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:590 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:695 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:543 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:1084 |
数列排序 (C语言代码)浏览:858 |
简单的a+b (C语言代码)浏览:719 |
兰顿蚂蚁 (C++代码)浏览:1225 |
不容易系列 (C语言代码)浏览:702 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:1110 |
WU-链表数据求和操作 (C++代码)浏览:1382 |