程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> JAVA實例:給一個不多於5位的正整數,要求:一、求它是幾位數,二、逆序打印出各位數字。

JAVA實例:給一個不多於5位的正整數,要求:一、求它是幾位數,二、逆序打印出各位數字。

編輯:關於JAVA
JAVA實例:給一個不多於5位的正整數,要求:一、求它是幾位數,二、逆序打印出各位數字。 import java.util.Scanner; publicclass Ex24 { publicstaticvoid main(String[] args) {    Ex24 tn = new Ex24();    Scanner s = new Scanner(System.in);    long a = s.nextLong();    if(a < 0 || a > 100000) {     System.out.println("Error Input, please run this program Again");     System.exit(0);    }     if(a >=0 && a <=9) {     System.out.println( a + "是一位數");     System.out.println("按逆序輸出是" + '\n' + a);    } elseif(a >= 10 && a <= 99) {     System.out.println(a + "是二位數");     System.out.println("按逆序輸出是" );     tn.converse(a);    } elseif(a >= 100 && a <= 999) {     System.out.println(a + "是三位數");     System.out.println("按逆序輸出是" );     tn.converse(a);    } elseif(a >= 1000 && a <= 9999) {     System.out.println(a + "是四位數");     System.out.println("按逆序輸出是" );     tn.converse(a);    } elseif(a >= 10000 && a <= 99999) {     System.out.println(a + "是五位數");     System.out.println("按逆序輸出是" );     tn.converse(a);    } } publicvoid converse(long l) {    String s = Long.toString(l);    char[] ch = s.toCharArray();    for(int i=ch.length-1; i>=0; i--) {     System.out.print(ch[i]);    } } }

 

*
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved