導航:首頁 > 編程語言 > java統計單詞個數

java統計單詞個數

發布時間:2023-03-22 05:47:09

1. java統計單詞的個數

import java.util.Scanner;

public class Test40031 {
public static void main(String []args ){
int ri, repeat,count, word,i;
String line;
char c;
Scanner in=new Scanner(System.in);
repeat=(in.nextLine()).charAt(0)-'0'; //輸入repeat
for(ri=1; ri<=repeat; ri++){
line=in.nextLine(); //輸入一行字元
/*---------*/
count=Count(line);
System.out.println(count);
}
}
public static int Count(String str){
String[] str1=str.split(" ");
int count=str1.length;
return count;
}
}

2. 用java編寫應用程序,分析字元串,分別輸出字元串的單詞,並統計單詞個數

public class StringTest {x0dx0a public static void main(String[] args) {x0dx0a //定義一個測試字元串x0dx0a String testStr = "this is a test string";x0dx0a x0dx0a //將該字元串按空格分解辯碰歲成單吵嫌詞數組x0dx0a String[] words = testStr.split(" ");x0dx0a x0dx0a //輸出單詞個數x0dx0a System.out.println("該字元串一共有" + words.length + "個單詞!");x0dx0a x0dx0a //攜睜輸出每一個單詞x0dx0a for (int i = 0; i < words.length; i++) {x0dx0a System.out.println("該字元串的第" + (i+1) + "個單詞是:" + words[i]);x0dx0a }x0dx0a }x0dx0a}

閱讀全文

與java統計單詞個數相關的資料

熱點內容
華為amd雲伺服器 瀏覽:495
漢化編程卡是什麼意思 瀏覽:126
python學習pdf 瀏覽:313
祝緒丹程序員那麼可愛拍吻戲 瀏覽:198
asp源碼會員消費系統 瀏覽:113
java反射設置 瀏覽:152
python一行文 瀏覽:439
排序演算法優缺點 瀏覽:563
惡搞加密文件pdf 瀏覽:674
gif怎麼壓縮圖片大小 瀏覽:217
命令選擇當前不可用 瀏覽:158
歐幾里得演算法如何求逆元 瀏覽:506
男中學生上課解壓神器 瀏覽:373
加密狗拔掉之後怎麼辦 瀏覽:27
雲儲存平台源碼 瀏覽:847
解壓文件蘋果手機rar 瀏覽:149
centos開機命令行模式 瀏覽:697
遍歷所有listpython 瀏覽:660
力控加密文件夾 瀏覽:517
如何更改移動伺服器密碼 瀏覽:686