计算一个字符串的字符总数的Java程序

1 说明

在此程序中,我们需要计算字符串中存在的字符数:

The best of both worlds

要计算字符串中存在的字符数,我们将遍历字符串并计算字符数。在上面的示例中,字符串中存在的字符总数为19。

进行编程时,请遵循以下算法:

2 算法思路

  • 步骤1:开始
  • 步骤2: 定义字符串 String string = "The best of both worlds"。
  • 步骤3: SET计数= 0。
  • 步骤4:设定i = 0。重复执行步骤5至步骤6,直到i <string.length
  • 步骤5: IF(string.charAt(i)!='')然后count = count +1。
  • 步骤6: i = i + 1
  • 步骤7:打印计数。
  • 步骤8:结束

3 程序实现

/**
 * 一点教程网: http://www.yiidian.com
 */
public class CountCharacter    
{    
    public static void main(String[] args) {    
        String string = "The best of both worlds";    
        int count = 0;    
            
        //Counts each character except space    
        for(int i = 0; i < string.length(); i++) {    
            if(string.charAt(i) != ' ')    
                count++;    
        }    
            
        //Displays the total number of characters present in the given string    
        System.out.println("Total number of characters in a string: " + count);    
    }    
}   

以上代码输出结果为:

Total number of characters in a string: 19

 

热门文章

优秀文章