seong
13 구구단 , 구구단 가로 출력 본문
구구단
- 이중 for문을 사용하면 된다.
- 첫번째 for 문에는 1~9 까지
- 두번째 for문에는 곱해질 숫자 1~9 까지
package ex06;
public class Gugudan {
public static void main(String[] args) {
System.out.println("구구단 출력");
for(int i = 1; i < 10; i++) {
for(int j = 1 ; j< 10 ; j++) {
System.out.println(i + " * " + j + " = " + i * j); // 결과 값에 *, = 는 문자열로 출력
}
}
}
}
결과
구구단 가로출력
- \t 는 tab 역할
- 가로 출력은 tab을 활용해 출력해준다.
package ex06;
public class GugudanEx03 {
public static void main(String[] args) {
for(int i = 1; i < 10; i++) {
for(int j =1; j<10; j++) {
System.out.print(j + " * " + i + " = " + i * j);
System.out.print("\t");
}
System.out.println();
}
}
}
결과
'자바 > 자바 실습' 카테고리의 다른 글
15 if,else, else if문 (0) | 2022.07.28 |
---|---|
14 While 반복문 (0) | 2022.07.28 |
12 반복문 For (0) | 2022.07.28 |
11 증감식 (0) | 2022.07.28 |
10 논리 연산자 (0) | 2022.07.28 |