|
)의 아키텍처
1. WAE: Wireless Application Environment
2. WTA: telephony services and programming interfaces
3. WSP: Wireless Session Protocol
4. WTP: Wireless Transaction Protocol
5. WTLS: Wireless Transport Layer Security
6. WDP: Wireless Datagram Protocol
Ⅸ. 결론
참고문헌
|
- 페이지 7페이지
- 가격 5,000원
- 등록일 2009.07.20
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
Programming Language
1) 구조화된 언어 : C
2) 객체지향 언어 : C++
3) JAVA
Ⅴ. 컨텐츠 수익 원천
1. PPV(pay-per-view)
2. PPD(pay-per-download)
3. PPM(pay-per-minute)
4. PPP(pay-per-packet)
5. 유료 정액제(subscription)
6. 부가 서비스 요구 시 청구하는 방식
Ⅵ. 디지
|
- 페이지 22페이지
- 가격 7,500원
- 등록일 2008.01.11
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
운영체제
1) 윈도우 CE
2) PalmOS
3) Embedded Linux
4) EPOC
9. Embedded System 제어를 위한 Software programming
1) Assembler Language
2) C Language
3) Embedded Linux
4) Microsoft Windows
10. Embedded System 개발 기업들
1) Montavista software
2) L & I Soft
|
- 페이지 8페이지
- 가격 2,000원
- 등록일 2006.10.17
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
C Data Cable) Ⅰ. 수출품
Ⅱ. HS code
Ⅲ. 수출품에 대한 해외시장 조사
1. 국가선택
(1) 일반사항
(2) 우리나라와의 관계
(3) 선택한 이유
2. 중국시장의 특성
(1) 주요 경제 지표
(2) 무역관행
(3) 조세현황
(4) 수요동향
(5) 경쟁동향
|
- 페이지 19페이지
- 가격 500원
- 등록일 2003.01.19
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
Programming Bible, 김순근저, 영진출판사
[3] 웹서비스 실전 프로그래밍, 이한수저 한빛미디어.
[4] XML 시작하기 에릭 레이, 한빛미디어
[5] http://www.w3.org/XML/schema 1. 연구개발의 필요성
2. 연구개발의 목표 (spec)
3. 연구개발의 내용 및 범위
|
- 페이지 12페이지
- 가격 2,000원
- 등록일 2003.12.30
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
Programming Curriculum. Bellevue Community College. 2000
[27] NWCET. Technical Support Curriculum. Bellevue Community College. 2000
[28] NWCET. Project Management for Media Technology Module. Bellevue Community College. 2000
[29] NWCET. Technical Report Writing for IT Module. Bellevue Community Coll
|
- 페이지 20페이지
- 가격 2,300원
- 등록일 2002.12.03
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
programming on Body image distortion in young woman. Journal of Communication, 42(3), 108-133.
Renee, A. B. (1999). Television Images and Adolescent Girls' Body Image Disturbance. Journal of Communication, 54(1), 22-41.
Stice, E., Schupak-Neuberg, E., Shaw, H. E., & Stein, R. (1994). Relation of med
|
- 페이지 27페이지
- 가격 3,300원
- 등록일 2002.12.29
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
lass Complex
{
friend Complex operator+(const Complex& x, const Complex& y);
friend Complex operator-(const Complex& x, const Complex& y);
friend Complex operator*(const Complex& x, const Complex& y);
friend ostream& operator<<(ostream& os, const Complex& c);
friend istream& operator>>(i
|
- 페이지 30페이지
- 가격 3,000원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c;
int line_number = 1;
is.get(c);
cout<<line_number<<": ";
while(!is.eof())
{
cout<<c;
if(c == '\n')
{
line_number++;
cout<< line_number<<": ";
}
is.get(c);
}
is.close();
return 0;
}
6. 텍스트 파일을 입력받아서 파일 안에 포함된 전체 문자수, 단어 수, 문장수를
|
- 페이지 13페이지
- 가격 2,300원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c = 0;
double ave = 0;
cout<<"정수를 입력하시오 : ";
cin>>a;
cout<<"정수를 입력하시오 : ";
cin>>b;
cout<<"평균 : "<<getAverage(a,b)<<endl;
return 0;
}
double getAverage(int a, int b)
{
return (a+b)/2;
}
세 개의 정수를 받아서 평균을 구하는 멤
|
- 페이지 15페이지
- 가격 2,300원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|