|
자바'를 구상
1993년 월드와이드 웹 발표 후 인터넷과 같은 분산환경에서는 자바와 같이 하드웨어 독립적인 언어가 이상적인 프로그래밍 수단임을 많은 사람들이 인식
Netscape 2.0에 자바 기술이 포함된 이후 인터넷 환경에서 가장 각광받는
|
- 페이지 50페이지
- 가격 3,000원
- 등록일 2007.01.05
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
WindowAdapter(){
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
ta.addKeyListener(new KeyAdapter(){
/*
* 단축키 설정
*/
public void keyReleased(KeyEvent e){
/*
* Ctrl 키가 눌러져 있음 실행
*/
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2007.10.15
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
System.out.println( 1장
《복 습 문 제》
4. 인터넷이 응용들에게 제공하는 두가지 유형의 서비스는 무엇인가?
5. 흐름제어와 혼잡제어가 동일한 것이라고 얘기되곤 한다. 인터넷의 연결지향 서비스의 경우 이것이 옳은가? 흐름제 어와 혼잡
|
- 페이지 15페이지
- 가격 2,000원
- 등록일 2006.05.05
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
system을 담당하는 클래스에서는 전화번호 수의 제한을 두지 않았다. 차후 확장할 수 있기 때문이다.
4. 모든 input command에 대한 error 처리를 하되 이전처럼 실행을 멈추게 하지 않고 다음 줄부터 다시 command를 읽도록 하였다.
5. 구현해야 할 것
|
- 페이지 8페이지
- 가격 2,500원
- 등록일 2006.06.29
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
import java.util.GregorianCalendar;
public class MyCalendarDemo {
public static void main(String[] args) {
if (args.length != 2) {
System.err.println("Usage: java -cp . MyCalendar <year> <month>");
System.err.println("ex. java -cp . MyCalendar 2006 3");
System.exit(1);
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.03.07
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
============================");
System.out.println(st.studentNumber +" | "+ st.name + " | "+ st.kor +" | "+ st.eng +" | "+ st.math +" | "+ st.total +" | "+ st.avg +" | ");
System.out.println();
}
}
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2006.11.23
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
import pkg.*; // package
import java.io.*;
public class infix_to_postfix
{
public static void main(String[] args)
{
// 키보드 입력을 받기 위한 준비작업.
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String s;
int result;
try {
// 인
|
- 페이지 10페이지
- 가격 1,500원
- 등록일 2004.11.15
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
System.err.println(e1.getMessage());
}
catch(SQLException e2) {
System.err.println(e2.getMessage());
}
}
public PreparedStatement getPreparedStatementQuery (String query) {
PreparedStatement pstmt;
try {
pstmt = con.prepareStatement(query);
}
catch (SQLException
|
- 페이지 30페이지
- 가격 4,500원
- 등록일 2004.05.31
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
ne(); // 원소값을 문자열로 입력
System.out.println();
sp_str = new StringTokenizer(temp, ", "); // 입력받은 문자열을 구분자로 나누는 객체 생성
if(sp_str.countTokens() == (snd_size[0] * snd_size[1])){ // 행렬의 크기와 입력받은 원소들의 수가 같으면 저장
i = 0; // 인덱
|
- 페이지 6페이지
- 가격 1,500원
- 등록일 2004.06.18
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
java.applet.Applet;
import java.awt.*;
public class Block extends Applet
{
public void paint (Graphics page)
{
setBackground (Color.orange);
int width = 0, height = 0;
int i, j;
page.setColor (Color.black);
for ( i=1; i<41; i++ )
{
for ( j=0; j<21; j++ )
{
if (i%2==0)
{
page.drawRect (width, h
|
- 페이지 8페이지
- 가격 1,000원
- 등록일 2004.10.05
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|