단일 for문, 재귀함수로 구구단 만들기
package study;
public class prey {
public static void main(String[] args) {
// 단일for문
for(int i = 0; i < 72 ; i++) {
System.out.println( (i / 9 + 2) + " * " + (i % 9 + 1) + " = " + (i / 9 + 2) * (i % 9 + 1));
}
// 재귀
System.out.println("========");
guguClass(0);
}
public static void guguClass(int i) {
if(i == 72) {
return;
}
else {
System.out.println( (i / 9 + 2) + " * " + (i % 9 + 1) + " = " + (i / 9 + 2) * (i % 9 + 1));
guguClass(i + 1);
}
}
}
'삽질노트 (오류)' 카테고리의 다른 글
삽질노트 6. [Spring] Plugin execution not covered by lifecycle configuration: (0) | 2022.04.05 |
---|---|
삽질노트 5. Error 522 Ray ID: 6f0bebef9d9cf8d3 Cloudflare 오류 (0) | 2022.03.24 |
삽질노트 4. [Oracle SQL] ORA-28001: the password has expired (0) | 2022.03.10 |
삽질노트 2. 스코프, 지역변수, 전역변수, 호이스팅 (0) | 2022.02.28 |
삽질노트 1. [Oracle SQL] ORA-01017: invalid username/password; logon denied (0) | 2022.02.25 |
댓글