解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class z1063 {
public static void main(String args[]){
Scanner sc=new Scanner(System.in);
String str=sc.nextLine();
int c=0;//char
int n=0;//number
int s=0;//sentence
int w=0;//word
for(int i=0;i<str.length();i++){
char ch=str.charAt(i);
if(ch==' ')
s++;
else if(ch>='a'&&ch<='z'||ch>='A'&&ch<='Z'){
c++;
}
else if(ch>='0'&&ch<='9'){
n++;
}
else if(ch>='!'&&ch<='/'||ch>=':'&&ch<='@'||ch>='['&&ch<='、'||ch>='{'&&ch<='`'){
w++;
}
}
System.out.println(c);
System.out.println(s);
System.out.println(n);
System.out.println(w);
}
}
0.0分
1 人评分
输出九九乘法表 (C语言代码)浏览:1649 |
C二级辅导-公约公倍 (C语言代码)浏览:2158 |
C语言程序设计教程(第三版)课后习题12.3 (C语言代码)浏览:878 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:530 |
多输入输出练习1 (C语言代码)浏览:1219 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:548 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:268 |
罗列完美数 (C语言代码)浏览:519 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:2207 |
C语言程序设计教程(第三版)课后习题5.5 (Java代码)浏览:563 |