java判斷各類型字符個數實例代碼
描述
輸入一行字符串,分別統計出其中英文字母、空格、數字和其它字符的個數
輸入描述:
控制臺隨機輸入一串字符串
輸出描述:
輸出字符串中包含的英文字母個數,數字個數,空格個數,其它字符個數(格式為:英文字母x數字x空格x其他x),預設代碼中已給出輸出.
import java.util.Scanner; public class Main { public static void main(String[] args) { int numbers = 0; int words = 0; int space = 0; int other = 0; Scanner scanner = new Scanner(System.in); String str = scanner.nextLine(); //write your code here...... System.out.println("英文字母"+words+"數字"+numbers+"空格"+space+"其他"+other); } }
import java.util.Scanner; public class Main { public static void main(String[] args) { int numbers = 0; int words = 0; int space = 0; int other = 0; Scanner scanner = new Scanner(System.in); String str = scanner.nextLine(); //write your code here...... for(int i=0;i<str.length();i++){ char c=str.charAt(i); if((c>='a' && c<='z')|| (c>='A' && c<='Z')){ words++; continue; } if(c>='0' && c<='9' ){ numbers++; continue; } if(c==' '){ space++; continue; } else{ other++; continue; } } System.out.println("英文字母"+words+"數字"+numbers+"空格"+space+"其他"+other); } }
註意:每次計數完後要跳出循環,否則就取出的字符會挨個問一遍判斷語句 出現問題
到此這篇關於java判斷各類型字符個數實例代碼的文章就介紹到這瞭,更多相關java判斷字符個數內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Java Scanner的使用和hasNextXXX()的用法說明
- 在Java中Scanner的用法總結
- 新手初學Java流程控制
- java編程學習輸入輸出詳解看完快速上手
- Java基礎語法:邏輯控制