|
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주 판매 이력 없음
|
|
c, double p, double a, double i)
{
country = c;
population = p;
area = a;
income = i;
}
void setCountry(string c)
{
country = c;
}
void setPopulation(double p)
{
population = p;
}
void setArea(double a)
{
area = a;
}
void setIncome(double i)
{
income = i;
}
string getCountry()
{
return country;
}
do
|
- 페이지 12페이지
- 가격 2,300원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
= {1,2,3,4,5}, B[] = {6,7,8,9,10}, n = 0;
cout<<"A[] = {1,2,3,4,5}"<<endl;
cout<<"B[] = {6,7,8,9,10}"<<endl;
cout<<endl;
copy(A,B,5);
return 0;
}
void copy(int *A, int *B, int n)
{
int *C = NULL, i;
C = B;
B = A;
A = C;
cout<<"A[] = {";
for(i = 0;i < n; i++){
i
|
- 페이지 19페이지
- 가격 2,300원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c)
{
name = n;
snum = sn;
major = m;
grade = g;
credit = c;
}
void setName(string n)
{
name = n;
}
void setSnum(string sn)
{
snum = sn;
}
void setMajor(string m)
{
major = m;
}
void setGrade(int g)
{
grade = g;
}
void setCredit(int c)
{
credit = c;
}
string getName()
{
return name;
}
string getSnum(
|
- 페이지 15페이지
- 가격 2,300원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
를 만든다.
sprintf(CLIENT_FIFO, "%d", getpid());
// client-specific FIFO를 만든다.
if (mkfifo(CLIENT_FIFO, FILE_MODE) == -1)
{
perror("fifo error");
exit(1);
}
client부분입니다. 1. 소스코드 (server.c, client.c)
2. 실행파일(server, client)
3. 실행결과 보고서
|
- 페이지 6페이지
- 가격 1,500원
- 등록일 2004.08.17
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
OSF/1 P Threads
최근에 몇몇 조직은 쓰레드를 다루기 위해 UNIX pakage를 개발했다. 예들은 브라운대학의 브라운 쓰레드, Sun의 경량 프로세스, 디지털장비 협회의 CMA 쓰레드 그리고 카네지 멜론 대학의 C Threads package를 포함한다.
이 각각의 구현은
|
- 페이지 34페이지
- 가격 1,500원
- 등록일 2003.12.23
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
이식성이 떨어지는 문제 야기
▪ 1984년에 유닉스 사용자 모임에서 표준화 위원회를 설립하여 유닉스 표준화를 시도 • 리눅스의 역사
• 리눅스의 특징
• 리눅스 배포판 설치
• 리눅스 시스템의 디렉토리 구조
|
- 페이지 22페이지
- 가격 3,000원
- 등록일 2012.11.21
- 파일종류 피피티(ppt)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|