|
자바 프로젝트 버스외상관리 프로그램 term project
|
- 페이지 30페이지
- 가격 3,000원
- 등록일 2008.12.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
자바 프로젝트 비디오 관리 프로그램 term project
|
- 페이지 30페이지
- 가격 3,000원
- 등록일 2008.12.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
자바 프로젝트 신원조회 프로그램 term project
|
- 페이지 30페이지
- 가격 3,000원
- 등록일 2008.12.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
import java.lang.*;
import java.io.*;
public class Lotto{
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int[] Lotto = new int[6];
int[] Lottod = new int[6];
int k =0;
for (int a = 0;a<Lott
|
- 페이지 1페이지
- 가격 1,000원
- 등록일 2007.02.15
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
자바로 구현한 넷마블 오목입니다.
|
- 페이지 20페이지
- 가격 2,000원
- 등록일 2007.09.27
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
import java.awt.*;
import java.awt.event.*;
import java.io.*;
class R extends Frame implements ActionListener{
private TextField lcd=new TextField(10);
private Button[] keys=new Button[15];
static char[] cs={'0','1','2','3','4','5','6','7','8','9','+','-','=','*','/'};
private StringBuffe
|
- 페이지 1페이지
- 가격 800원
- 등록일 2007.06.21
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
C:\test>java ShapePrinter diamond 5
*
***
*****
***
*
C:\test>java ShapePrinter up-triangle 5
*
***
*****
*******
*********
C:\test>java ShapePrinter down-triangle 5
*********
*******
*****
***
*
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.04.10
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
컴파일과 실행을 하면 결과는 다음과 같습니다.
C:\test>javac TowerOfHanoi.java
C:\test>java TowerOfHanoi
Move from Src to Aux.
Move from Src to Dst.
Move from Aux to Dst.
Move from Src to Aux.
Move from Dst to Src.
Move from Dst to Aux.
Move from Src to Aux.
Move from Src to Dst.
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.04.12
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
2},
{3, 4},
{5, 6}
};
int[][] matrix_c = multiply(matrix_a, matrix_b);
if (matrix_c == null) {
return;
}
print(matrix_c);
}
컴파일과 실행 결과는 다음과 같다.
C:\work>javac MatrixMultiply.java
C:\work>java MatrixMultiply
22 28
49 64
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.04.12
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
판단하라. 음수일 경우 양수로 변환하고, 두 양수의 약수를 전부 구하라. 두수가 합성수 혹은 소수인지를 구하고,두수의 최대공약수, 최소공배수를 구하라.
실행은 다음과 같이 합니다.
java -cp . GCDAndLCM <number 1> <number 2>
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.03.13
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|