1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | package mypackage; public class WhileExample1 { public static void main(String[] args) { MyComparison mycomp = new MyComparison(); mycomp.displayGugudan(); } } class MyComparison{ void displayGugudan(){ int dan = 1; int su = 1; while(dan <= 9){ while(su <= 9){ System.out.println(dan+"단 : "+dan+"*"+su+"="+(dan * su)); su++; } dan++; su = 1; System.out.println(); } } } | cs |
'개발' 카테고리의 다른 글
[java] Instance VS static (0) | 2013.04.05 |
---|---|
[java] for문 구구단 (0) | 2013.04.05 |
[java] while, do-while, for문 0~1까지, 0~100까지 짝수와 4의 배수 (0) | 2013.04.04 |
[java] 지폐단위별 숫자 구하기2 (0) | 2013.04.04 |
[java] 지폐단위별 숫자 구하기 (0) | 2013.04.04 |