Skip to content

Latest commit

 

History

History
14 lines (14 loc) · 401 Bytes

Q8.md

File metadata and controls

14 lines (14 loc) · 401 Bytes
public static void checkChuCai(char c){
    String s = "" + c;
    if(s.matches("[a-zA-Z]")){
        if (s.matches("[ueoaiUEOAI]")){
            System.out.println(String.format("%c la nguyen am",c));
        }
        else {
            System.out.println(String.format("%c la phu am",c));
        }
    }
    else System.out.println(String.format("%c khong là nguyen am, phu am",c));
}