1. 程式人生 > 其它 >1006 換個格式輸出整數 (15 point(s))

1006 換個格式輸出整數 (15 point(s))

讓我們用字母B來表示“百”、字母S表示“十”,用12...n來表示不為零的個位數字n<10),換個格式來輸出任一個不超過 3 位的正整數。例如234應該被輸出為BBSSS1234,因為它有 2 個“百”、3 個“十”、以及個位的 4。

輸入格式:

每個測試輸入包含 1 個測試用例,給出正整數n(<1000)。

輸出格式:

每個測試用例的輸出佔一行,用規定的格式輸出n。

輸入樣例 1:

234

輸出樣例 1:

BBSSS1234

輸入樣例 2:

23

輸出樣例 2:

SS123
import java.util.Scanner;

public class Num1006 {
    
public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int[] array = new int[3]; int index = 0; while (n != 0) { array[index++] = n % 10; n = n / 10; } int bai = array[2];
int shi = array[1]; int ge = array[0]; while (bai != 0) { System.out.print("B"); bai--; } while (shi != 0) { System.out.print("S"); shi--; } for (int i = 1; i <= ge; i++) { System.out.print(i); } } }