Written by
java-style
on
on
[백준java] for - 2739 / 구구단
[백준java] for - 2739 / 구구단
import java.util.Scanner; // 구구단 public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int num = scanner.nextInt(); for(int i=1; i<=9 ; i++){ System.out.println(num+" * "+i+" = "+(num*i)); } } }
공유하기 글 요소 저작자표시
from http://nxxrxx.tistory.com/34 by ccl(A) rewrite - 2021-10-15 17:27:39