JAVA/예제

[JAVA] ch03-16. 대문자를 소문자로

밍글링글링 2017. 8. 21.
728x90
 
public class Ex16 { //알파벳 대문자를 소문자로 바꾸기
    public static void main(String[] args){
        /*char lowerCase = 'z';
        char upperCase = (char) (lowerCase - 32);
        System.out.println(upperCase);*/
        
        /*
        Scanner sc = new Scanner(System.in);
        System.out.print("소문자로 바꿀 알파벳 대문자를 입력하시오");
        String a = sc.nextLine();
        for(int i = 0; i<a.length(); i++){
        char b = (char) (a.charAt(i)+32);
        System.out.print(b);
        */
        
        Scanner sc = new Scanner(System.in);
        System.out.print("소문자로 바꿀 알파벳 대문자를 입력하시오");
        String a = sc.nextLine();
        char b = (char) (a.charAt(0)+32);
        System.out.println("b="+ b);
    }
}

728x90

댓글