import java.util.Scanner;
public class Ex_다중for문 {
public static void main(String[] args) {
// 구구단 출력하기
Scanner sc = new Scanner(System.in);
for(int i = 2; i < 10; i++ ) {
System.out.println("=="+i+"단 ==");
for(int k = 1; k < 10; k++) {
System.out.println(i+"*"+k+"="+(i*k));
}
System.out.println();
}
}
}
import java.util.Scanner;
public class Ex_다중for문 {
public static void main(String[] args) {
// 구구단 출력하기
Scanner sc = new Scanner(System.in);
for(int i = 2; i <= 9; i++) {
System.out.print(i+"단 : ");
for(int j = 1; j <= 9; j++) {
System.out.print(i+"*"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
import java.util.Scanner;
public class Ex_다중for문 {
public static void main(String[] args) {
// 구구단 출력하기
Scanner sc = new Scanner(System.in);
for(int i = 1; i <= 9; i++) {
for(int j = 2; j <= 9; j++) {
System.out.print(j+"*"+i+"="+(j*i)+" ");
}
System.out.println();
}
}
}
'언어 > JAVA' 카테고리의 다른 글
while문_랜덤으로 정수 2개를 뽑아 합 입력 (0) | 2023.03.01 |
---|---|
다중for문_별 모양 출력 (0) | 2023.03.01 |
for문 예제_구구단 출력하기 (0) | 2023.02.27 |
for문 예제_두 수 사이의 총 합을 출력 (0) | 2023.02.26 |
for문 예제_두 개의 정수 중 작은 수부터 큰 수까지 차례대로 출력 (0) | 2023.02.26 |
댓글