题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。先把String转化成array,再通过Character中的几个方法对每个char进行判断。下面是Character类的介绍:Character 类在对象中包装一个基本类型 char 的值。Character 类型的对象包含类...
分类:
编程语言 时间:
2015-11-20 16:53:39
阅读次数:
200
/**
* 题目:题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
* 时间:2015年7月28日10:04:33
* 文件:lianxi07.java
* 作者:cutter_point
*/
package bishi.zuixin50.t2015728;
import java.io.BufferedReader;
import java.io.Fi...
分类:
其他好文 时间:
2015-08-08 22:58:04
阅读次数:
184
//输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。public class lianxi07 { public static void main(String[] args) { int digital = 0; int character = 0; int ...
分类:
其他好文 时间:
2015-08-01 12:53:32
阅读次数:
167
public class Test2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int abcCount = 0;// 英文字母个数
int spaceCount = 0;// 空格键个数
int numCount = 0;// 数字个数
int otherCoun...
分类:
其他好文 时间:
2015-06-17 21:33:21
阅读次数:
152
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。#includeint main(void){ char c; int letters = 0, space = 0, digit = 0, others = 0; while ((c=getchar())...
分类:
编程语言 时间:
2015-05-11 14:24:51
阅读次数:
103
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。#include #include using namespace std;int main(){ const int size = 100; char ch[size]; int CharNum = 0, DigNum ...
分类:
其他好文 时间:
2015-04-20 12:42:58
阅读次数:
102
1 #include 2 #include 3 4 using namespace std; 5 6 /* 7 题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。 8 */ 9 10 void11 count() {12 //统计个数.13 int l...
分类:
其他好文 时间:
2014-12-01 12:38:11
阅读次数:
194
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。def foo(a): l=len(a); letters=0; space=0; digit=0; others=0; for i in range(0,l): num=ord...
分类:
编程语言 时间:
2014-09-13 09:22:44
阅读次数:
228
/*【程序7】
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
1.程序分析:利用while语句,条件为输入的字符不为‘\n‘.*/
packagetest;
importjava.util.ArrayList;
importjava.util.List;
publicclasstest{
publicstaticList<Integer>countstr..
分类:
编程语言 时间:
2014-05-27 03:32:01
阅读次数:
375