import java.util.Scanner;
public class GugudanMain {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String inputValue = scanner.nextLine();
String[] splitedValue = inputValue.split(",");
int first = Integer.parseInt(splitedValue[0]);
int second = Integer.parseInt(splitedValue[1]);
for (int i = 2; i < first + 1; i++) {
for ( int j = 1; j < second+1; j++ )
{
System.out.println(i*j);
}
}
}
}
<사용된 메서드>
Scanner scanner = new Scanner(System.in);
String inputValue = scanner.nextLine();
String[] splitedValue = inputValue.split(",");
int first = Integer.parseInt(splitedValue[0]);
int second = Integer.parseInt(splitedValue[1]);
'WIL(What I Learned)' 카테고리의 다른 글
동빈나 코테 학습 순서 유튜브 정리 (0) | 2021.10.05 |
---|---|
TIL (0) | 2021.09.14 |
(자바 플레이그라운드) 구구단 이중 for문과 배열을 활용한 중복 제거 (0) | 2021.08.29 |
원소를 무한히 저장하는 ArrayList 구현하기 (프로그래머스 자바 자료구조) (0) | 2021.08.23 |
java ArrayList indexOf() (0) | 2021.08.23 |