for문을 이용한 구구단 출력 예제 입니다.
1.단을 입력한후 결과값 출력
-------------------------------
import java.util.Scanner;
public class GuguDanEx {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("단 입력 : ");
int dan = sc.nextInt();
System.out.println(dan+"단");
System.out.println("----------");
for(int i = 1 ; i <= 9 ; i++){
System.out.println(dan+"*"+i+"="+(dan*i));
}
}
}
-----------------------------------------------------
2. 전체 구구단 출력
-----------------------------------------------------
public class GuguDanEx2 {
public static void main(String[] args){
for(int i=1;i<10;i++){
for(int j=2;j<10;j++){
System.out.print(j+"*"+i+"="+(j*i)+"\t");
}
System.out.println();
}
}
}
'자바' 카테고리의 다른 글
이클립스 단축키 및 기능 (0) | 2019.01.15 |
---|---|
구의 표면적과 부피 구하기 (0) | 2019.01.15 |
Eclipse Amateras UML Sequence Diagram 그리기 (2) | 2019.01.15 |
Eclipse Amateras UML Usecase Diagram 그리기 (0) | 2019.01.15 |
Eclipse Amateras UML Class Diagram 그리기 (0) | 2019.01.15 |