Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

번개멍

[JAVA]대소문자 변환 본문

코딩이야기/JAVA

[JAVA]대소문자 변환

번개멍 2020. 4. 8. 18:30

오늘은 대소문자 변환하는 프로그램?을 배우게 되었습니다. A~Z 를 a~z로 대문자를 소문자로 소문자를 대문자로 변환하게 됩니다.

 

package Exam1;

import java.io.IOException;

public class Exam1_1_12_3 {
	//입력된 문자가 대문자이면 소문자로, 소문자이면 대문자로 변경하는 프로그램을 작성하세요
	public static void main(String[] args) throws IOException {
		
		
		while(true){
			
		
		int ch = System.in.read();		
		if(ch >= 'A'&ch<='Z'){
			ch = ch +32;  //대문자 A==65 Z==97
			System.out.println((char)ch);
			
		}else if(ch >= 'a'&ch<='z'){
			ch = ch -32 ;
			System.out.println((char)ch);
		}
		
		}
	}

}

'코딩이야기 > JAVA' 카테고리의 다른 글

[JAVA] printf  (0) 2020.04.21
[JAVA] 랜덤 클래스  (0) 2020.04.20
[JAVA] 배열의 기초!  (0) 2020.04.17
[JAVA] 생성자 개념  (0) 2020.04.08
[JAVA]예외 클래스  (0) 2020.04.08
Comments