3초기억력

반복문 문제) while + char 본문

자바_기초

반복문 문제) while + char

잠수콩 2019. 5. 14. 08:45
package Loop;

public class exam_loop_AZ {

	public static void main(String[] args) {

		System.out.println("==========과제1=========");

		char ch_2 = 'A';
		char ch_3 = 'A';
		int k = 1;
		//65 66 67 68 69 70
		//71 72 73 74 75 76
		//77 78 79 80 81 82
		//83 84 85 86 87 88
		//89 90
		
		while(ch_2 <= 'Z') {
			if ( (int)ch_2 == (int)ch_3 - 1 + (k * 6) ) {
				System.out.println(ch_2);
				k++;
			} else {
				System.out.print(ch_2);
			}
			ch_2++;
		}
		System.out.println("-----------------------------");
	}

}

'자바_기초' 카테고리의 다른 글

Variable + Scanner) 문제2  (0) 2019.05.14
Variable + Scanner) 문제1  (0) 2019.05.14
반복문) while  (0) 2019.05.14
제어문 + 반복문 문제) if + for + array  (0) 2019.05.14
제어문 문제) if + 논리연산자  (0) 2019.05.14
Comments