[Week02 Day009][FRI 09 MAY 2022] Java 기초 제어문
Chapter 조건문
연습문제 Pair programming 조건문
Chapter 반복문
연습문제 Pair programming 반복문
조건문 반복문 너무 어려워 ㅠㅠ
반복문 안에 반복문을 써야하는 마지막 연습문제에서
반복문이 헷갈려서
// output(0) = word.charAt(0)
// output(1) = word.charAt(0) + word.charAt(1)
// output(2) = word.charAt(0) + word.charAt(1) + word.charAt(2) j=2 i= 0, 1, 2
// output(j) = word.charAt(0) + ... + word.charAt(j) i= 0, 1, 2, .. j
이런 식으로 틀을 짜서 이해를 하고 만들어봤다
구글링없이 혼자 손코딩 잘 했는데 잘 돼서 그게 기뻤음 ㅋㅋ