Tổng Hợp Bài Tập ôn Luyện Kiến Thức Java Căn Bản - Java Core

Do Trung Duc

2021-02-21 07:49:07

Bai 6 /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ChuyenNumberSangString; import java.util.Scanner; /** * * @author TrungDuc */ public class Main { public static void main(String[] args) { String number[] = {"Khong","Mot","Hai","Ba","Bon","Nam","Sau","Bay","Tam","Chin"}; String countUnit[] = {"","Muoi","Tram","Nghin","Muoi","Tram","Trieu"}; Scanner scan = new Scanner(System.in); System.out.println("Nhap so N = "); int N = scan.nextInt(); String numberString = ""; int indexUnit = 0; while(true){ int a = N/10; int b = N%10; if(b>0){ numberString = number[b]+ "" + countUnit[indexUnit] + numberString ; } if(a==0){ break; } N = a; indexUnit++; } System.out.println(numberString); } }

Từ khóa » Các Bài Toán Java Cơ Bản