Written by
java-style
on
on
1020 - 배열 예제(구구단)
1020 - 배열 예제(구구단)
import java.util.Scanner; public class Ex03Gugudan { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("구구단 단수를 입력하세요."); System.out.print("> "); int number = scanner.nextInt(); int[] gugudan = new int[9]; for(int i=0 ; i
구구단 단수를 입력하세요. > 2 2 4 6 8 10 12 14 16 18
from http://helloenavy.tistory.com/71 by ccl(A) rewrite - 2021-10-21 10:27:40