您好,登錄后才能下訂單哦!
這篇文章主要介紹了java如何判斷各類型字符個(gè)數(shù),具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
輸入一行字符串,分別統(tǒng)計(jì)出其中英文字母、空格、數(shù)字和其它字符的個(gè)數(shù)
控制臺(tái)隨機(jī)輸入一串字符串
輸出字符串中包含的英文字母?jìng)€(gè)數(shù),數(shù)字個(gè)數(shù),空格個(gè)數(shù),其它字符個(gè)數(shù)(格式為:英文字母x數(shù)字x空格x其他x),預(yù)設(shè)代碼中已給出輸出.
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+"數(shù)字"+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+"數(shù)字"+numbers+"空格"+space+"其他"+other); } }
注意:每次計(jì)數(shù)完后要跳出循環(huán),否則就取出的字符會(huì)挨個(gè)問(wèn)一遍判斷語(yǔ)句 出現(xiàn)問(wèn)題
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“java如何判斷各類型字符個(gè)數(shù)”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。