Skip to content

Instantly share code, notes, and snippets.

@nikitoe
nikitoe / MultiplicationTable.java
Last active May 22, 2022 16:04
과제1. "콘솔 화면에 구구단 출력하기"
/*
심지용
과제1. "콘솔 화면에 구구단 출력하기"
*/
public class MultiplicationTable {
public static void multiplication(){
System.out.println("[구구단 출력]");
for (int i = 1; i < 10; i++) {
/*
테스트
*/
public class JavaTest {
public static void main(String[] args) {
System.out.println("Hello World");
}
}