|
class, Start.class 두 개의 클래스로 이루어져 있다. Start 클래스는 Mabangjin 클래스의 객체를 생성한 후에 Mabangjin클래스의 makeMabangjin() 메소드를 호출하여 마방진을 생성 출력하게 된다.
°소감
프로그램을 작성하면서 메소드를 역할에 맞게 분배 하
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2005.04.18
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
public class MyPad extends JFrame implements ActionListener, UndoableEditListener
{
JTextPane tp = new JTextPane();
// 현재 파일
private File doc_file = null;
// New 기능에서 필요한 변수
private Dialog d, d_1;
private Button bu_1, bu_2, bu_3;
private String myFile, fileString, file
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2005.02.28
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
class
Polynomial result = new Polynomial(); // 두 다차항을 더한 값을 넣어둘 result 생성.
int i = 0;
while(i <= degree && i <= p.degree) // 두 다항식의 같은 차수의 항계산 부분.
result.addTerm(coef[i]+p.coef[i], i++); // result에 두 다항식의 해당 차수 계수의 값을 더한
|
- 페이지 7페이지
- 가격 1,000원
- 등록일 2003.12.30
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
{ //노드의 출력
System.out.print(\"(\");
ListNode p = firstNode;
while (p != null) {
System.out.print(p.data);
p = p.rlink;
if(p != null) {
System.out.print(\",\");
}
}
System.out.println(\")\");
}
} public class ListNode {
public class DoublyLinkedListTest {
public class DoublyLinkedL
|
- 페이지 8페이지
- 가격 2,000원
- 등록일 2003.10.22
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
class SinglyLinkedListTest {
public static void main(String args[]) {
SinglyLinkedList l = new SinglyLinkedList();
l.addLast(\"Kim\");
l.addLast(\"Lee\");
l.addFirst(\"Park\");
l.addLast(\"Yoo\");
l.addLast(\"Choi\");
l.addLast(\"Jung\");
l.addFirst(\"Song\");
l.add(1, \"Joo\");
System.out.print(\"
|
- 페이지 8페이지
- 가격 2,000원
- 등록일 2003.10.22
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
어휘
-문법적으로 의미 있는 최소의 단위
-토큰(token)
-컴파일 과정의 첫번째 단계 (어휘분석)
자료형
-자료 객체가 갖는 형
-구조, 개념, 값, 연산
토큰
문법적으로 의미 있는 최소의 단위
if (i<100) sum+=i;
토큰 : if, (, i, <, 100, ), sum
|
- 페이지 23페이지
- 가격 3,000원
- 등록일 2009.12.04
- 파일종류 피피티(ppt)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
public class SoketChat extends Activity implements OnClickListener {
private final static String IP= \"pc ip주소\"
private final static String BR=
System.getProperty(\"hi\");
private TextView Receive;
private SoketChat current;
private final Handler hand
|
- 페이지 4페이지
- 가격 2,300원
- 등록일 2015.10.27
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
class FontDialog extends Dialog implements ActionListener
{
private Label jfdl1 = new Label();
private Label jfdl2 = new Label();
private Label jfdl3 = new Label();
private Label jfdl4 = new Label();
private Label jfdl6 = new Label();
private TextField jfdtf1 = new TextField();
privat
|
- 페이지 25페이지
- 가격 3,000원
- 등록일 2012.03.13
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
클래스
class Field {
int x0, x1, y0, y1, w, h;
Field(int wide, int high) {
w = wide; h = high;
x1 = w/2; y1 = h/2;
x0 = -x1; y0 = -y1;
}
}
//공의 위치 클래스
class Ball {
Field f;
int x, y;
double dx, dy;
Ball(Field f) { x = 0; dx = 0; y = 0; dy = 0; this.f = f;}
boolean move() {
x = (int)(x + dx);
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2015.04.03
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
java.io.FileWriter;
import java.io.IOException;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.StringTokenizer;
publ
|
- 페이지 44페이지
- 가격 6,000원
- 등록일 2015.04.04
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|