Enter a string to determine if it has several letters, several numbers, or other characters

Source: Internet
Author: User
public static void Main (string[] args) {

int count_abc=0,count_num=0,count_oth=0;
Enter a number of strings
Scanner scan=new Scanner (system.in);
String str = Scan.next ();
char[] chars = Str.tochararray ();
Judging each character
for (int i = 0;i<chars.length;i++) {
if ((chars[i]>=65&&chars[i]<=90) | | | (chars[i]>=97&&chars[i]<=122)) {
count_abc++;
}else if (chars[i]>=48&&chars[i]<=57) {
count_num++;
}else{
count_oth++;
}
}
SYSTEM.OUT.PRINTLN ("The Letters are:" +count_abc+ ");
System.out.println ("Number:" +count_num+ ");
System.out.println ("Others are:" +count_oth+ ");
}

Enter a string to determine if it has several letters, several numbers, or other characters

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.