목차
접기
728x90
반응형
package algo2;
public class Operators {
public static void main(String[] args) {
int dan;
int times;
int limit = 9;
for ( dan = 2; dan <= limit; dan++ ) {
for ( times = 2; times <= limit; times++ ) {
System.out.println(String.format("%d * %d = %d", dan, times, dan * times));
}
System.out.println();
// 라인 한줄 공백을 만들어준다.
}
}
}
728x90
반응형
LIST
'Java' 카테고리의 다른 글
[ java ] for문 break 사용법(조건식 생략) (0) | 2020.12.13 |
---|---|
[ java ] continue문 사용법 (0) | 2020.12.13 |
[ java ] do-while 사용법 (0) | 2020.12.13 |
[ java ] while 사용법 기초 (0) | 2020.12.13 |
[ java ] switch 조건문 사용법 (0) | 2020.12.13 |