題目:給一個不多于5位的正整數,要求:一、求它是幾位數,二、逆序打印出各位數字。
程序設計:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
import java.util.Scanner; public class Ex24 { public static void 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); } else if (a >= 10 && a <= 99 ) { System.out.println(a + "是二位數" ); System.out.println( "按逆序輸出是" ); tn.converse(a); } else if (a >= 100 && a <= 999 ) { System.out.println(a + "是三位數" ); System.out.println( "按逆序輸出是" ); tn.converse(a); } else if (a >= 1000 && a <= 9999 ) { System.out.println(a + "是四位數" ); System.out.println( "按逆序輸出是" ); tn.converse(a); } else if (a >= 10000 && a <= 99999 ) { System.out.println(a + "是五位數" ); System.out.println( "按逆序輸出是" ); tn.converse(a); } } public void 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]); } } } |