|
// func2 함수 int width와 int height를 가져옴.
{
return (w + h) * 2; // (가로+높이)*2(둘레) 값을 result2로 반환.
}
|
- 페이지 1페이지
- 가격 800원
- 등록일 2008.12.08
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
-c++에서 dos화면을 정지시키기위함.
return 0;
}
int to_cup(int o)
{
int result;
result= o/8;
return result;
}
|
- 페이지 1페이지
- 가격 800원
- 등록일 2008.12.08
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
: %d개, 10원 : %d개\n",man,chun,baek,sip);
system("pause");// dev-c++에서 dos화면을 정지시키기위함.
return 0;
}
|
- 페이지 1페이지
- 가격 800원
- 등록일 2008.12.08
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
sult = num * recurse(num-1);
return m_result;
}
else
{
printf("양수의 값만을 입력하시오.\n");
return 1;
}
}
|
- 페이지 1페이지
- 가격 800원
- 등록일 2008.12.08
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
include<stdio.h>
#include<stdlib.h> //This header file is for exit fucntion
const int ARRAY_SIZE = 50; //Array size
int Result[ARRAY_SIZE]; //Save Result to this array
//Fibonatorial function definition. This function returns int type array
int* Fibonatorial(int n){
if(n &
|
- 페이지 7페이지
- 가격 1,300원
- 등록일 2013.08.04
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|