This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 심지용 | |
| 과제1. "콘솔 화면에 구구단 출력하기" | |
| */ | |
| public class MultiplicationTable { | |
| public static void multiplication(){ | |
| System.out.println("[구구단 출력]"); | |
| for (int i = 1; i < 10; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 테스트 | |
| */ | |
| public class JavaTest { | |
| public static void main(String[] args) { | |
| System.out.println("Hello World"); | |
| } | |
| } |
NewerOlder