溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java判斷數(shù)字位數(shù)的方法總結(jié)

發(fā)布時間:2020-09-11 10:51:19 來源:腳本之家 閱讀:336 作者:彬菌 欄目:編程語言

普通方法:

import java.util.Scanner;

public class Digits { 
  public static void main(String[] args){ 
    Scanner input=new Scanner(System.in);//聲明掃描儀變量 
    System.out.println("請輸入0-999999999整數(shù)");//系統(tǒng)提示輸入 
    try{ //監(jiān)聽異常
    	while(true){
    int num=input.nextInt(); 
    int count = 0; 
    if (num < 0 || num > 999999999) 
    System.out.println("輸入超出范圍"); 
    else if (num==0) 
      System.out.println("輸入的是1位數(shù)"); 
    else { 
       while(num > 0){ 
      num=num / 10; 
      count++; 
       } 
       System.out.println("輸入的是"+count+"位數(shù)");
       	}
       } 
    }
    catch (Exception e){ //捕捉異常
  		System.out.println("請正確輸入");
  		e.printStackTrace(); //打印異常信息在程序中出錯的位置及原因
    }
  } 
}

一般函數(shù)/方法:

import java.util.Scanner;

public class Digits { 
	boolean digits(int num){ //創(chuàng)建boolean類型的方法
		 if (num < 0 || num > 999999999){
			 return true; 
		 }
		 else{
			 return false;
		 }
	}
  public static void main(String[] args){
  	Digits d=new Digits (); //創(chuàng)建對象
  	Scanner input=new Scanner(System.in);//聲明掃描儀變量 
  	System.out.println("請輸入0-999999999整數(shù)");//系統(tǒng)提示輸入
  	try{ //監(jiān)聽異常
  		while(true){
  	int num=input.nextInt();//取得下一行輸入的值
  	int count=0;
  	if(num==0){
  		System.out.println("輸入的是1位數(shù)");
  	}
  	else if(d.digits(num)){ //對象調(diào)用digits方法
  		System.out.println("輸入超出范圍");
  	}
  	else{
  		while(num > 0){
  			num=num / 10;
  			count++;
  			}
  		System.out.println("輸入的是"+count+"位數(shù)");
  			}
  		}
  	}
  	catch (Exception e){ //捕捉異常
  		System.out.println("請正確輸入");
  		e.printStackTrace(); //打印異常信息在程序中出錯的位置及原因
  	}
  } 
}

注解:方法二用到了面向?qū)ο蟮乃枷?/p>

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI