Revision history of "자료구조/예제/1장 추상 데이터 타입과 객체지향 방법"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 20:10, 5 July 2022Swpark talk contribs 2,776 bytes +2,776 Created page with "== 1.1 Java 입문 == ==== 프로그램 1.1 Java 프로그램==== <syntaxhighlight lang="java"> package ds.ch01; public class JavaOne { static int count = 1; public static void main(String[] args) { System.out.println("The count is " + count); } } </syntaxhighlight> ==== 프로그램 1.2 메소드 정의와 호출의 예 ==== <syntaxhighlight lang="java"> package ds.ch01; public class MinTest { public static void main(String[] args) {..."