Chuyển chữ hoa thành chữ thường

 Chuyển chữ hoa thành chữ thường



public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String message;
        System.out.println("\nNhập vào chuỗi cần in thường: ");
        message = sc.nextLine();
        System.out.println("Chuỗi sau khi in hoa: ");
        System.out.println(message.toLowerCase());
    }
}