728x90
자바로 2단 부터 9단까지 출력하는 소스코드이다.
package ch04;
public class P124 {
public static void main(String[] args) {
outter:
for (int i = 2; i < 10 ; i++) {
System.out.println(i+"단 시작 -------------");
for (int j = 1; j <10 ; j++) {
if((i*j)==99) {
break outter;
}
System.out.printf("%d x %d =%d \t",i,j,(i*j));
}
System.out.println("~~~~~");
}
결과화면
728x90
'Back-end' 카테고리의 다른 글
jdbc crud #1 insert (0) | 2022.04.27 |
---|---|
자바 연산자 (0) | 2022.04.25 |
자바 변수,기본타입 (0) | 2022.04.23 |
자바 상속 (0) | 2022.04.18 |
java scanner 클래스 (0) | 2022.04.11 |