码迷,mamicode.com
首页 > 其他好文 > 详细

输入一个字符串,统计该字符串中分别包含多少个数字,多少个字母,多少个其他字符

时间:2016-10-15 00:04:01      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:public   字符串   import   统计   字母   

//使用ASCII表写

import java.util.Scanner;


public class Try {


 public static void main(String[] args) {

    System.out.println("输入一个字符");

    char x=sc.next().charAt(0);

    if(x>=48&&x<=57){

           System.out.println("这是一个数字");

    }

    else if(x>=65&&x<=90||x>=97&&x<=122){

      System.out.println("这是一个字母");

    }

    else{

      System.out.println("这是一个字符");

    }*/

  }

}


//不使用ASCII表

import java.util.Scanner;


public class Try {

public static void main(String[] args) {

   Scanner sc=new Scanner(System.in);

   System.out.println("输入一个字符");

   char x=sc.next().charAt(0);

   if(‘a‘<=x&&‘z‘>=x){

    System.out.println("这是一个小写字母");

   }

   else if(‘A‘<=x&&‘Z‘>=x){

    System.out.println("这是一个大写字母");

   }

   else if(‘0‘<=x&&‘9‘>=x){

    System.out.println("这是一个数字");

   }

   else{

      System.out.println("这是一个字符");

   }

}

}



输入一个字符串,统计该字符串中分别包含多少个数字,多少个字母,多少个其他字符

标签:public   字符串   import   统计   字母   

原文地址:http://12087881.blog.51cto.com/12077881/1862027

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!