GuGuDanWhile-구구단 - 중첩 while문
CODEDRAGON ㆍDevelopment/Java
반응형
구구단 - 중첩 while문으로
소스코드
public class GuGuDanWhile {
public static void main(String[] args) {
int i=2, j; while(i<10) { j=1; while(j<10) { System.out.println(i + " x " + j + " = " + i*j); j++; } i++; } } } |
https://github.com/10zeroone/study_Java/blob/master/ch04-operation/LAB/GuGuDanWhile.java
출력결과
'Development > Java' 카테고리의 다른 글
Error-Resource '/web/WebContent/WEB-INF/web.xml' does not exist (0) | 2015.03.16 |
---|---|
JRE 설치, 자바실행환경 구축 (0) | 2015.03.15 |
JDK 설치 – 8u40 (0) | 2015.03.11 |
Spring Framework Reference Documentation (0) | 2015.03.02 |
ForEx04.java-구구단(단일for), 단 입력 받은 후 구구단 출력하기 (0) | 2015.03.01 |