|
/*
CreateStackDll 함수
함 수 명 : CreateStackDll
호출 함수 :
전달 인수 : 없음
반 환 값 : 없음
*/
void CreateStackDll(StackDll *pSelf)
{
pSelf ->Bottom = (DLL *)malloc(sizeof(DLL));
CreateDll(pSelf ->Bottom);
pSelf ->Top = pSelf ->Bottom ->position;
pSe
|
- 페이지 29페이지
- 가격 3,000원
- 등록일 2005.01.04
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#ifndef __NavigationInterface_H /* header파일 정의 안되었으면 정의 */
#define __NavigationInterface_H /* header파일 정의 */
/* 메인 메뉴 함수 */
void Main_Menu();
/* 세타 계산 함수 */
double Seta_Calculate(int);
/* IncreDistance = d 함수 */
double Incre_Distance(int);
/
|
- 페이지 3페이지
- 가격 1,300원
- 등록일 2005.05.31
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <sys/timeb.h>
#define MAX_EDGE 385
typedef struct vertex *vertex_pointer; //adjacency_list
struct vertex {
char name[20];
int number;
vertex_pointer next;
};
typedef struct edge *edge_point
|
- 페이지 5페이지
- 가격 800원
- 등록일 2003.06.06
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
r=0;fahr<=50;fahr++)
if(((fahr%3)==0)||(fahr%10)==3||((int)(fahr/10))==3)
printf("%d\t %f\n",fahr,((5.0/9.0)*(fahr-32)));
}
<compile시 error message>
14번 라인에 if문에서 ) 하나가 빠졌다고 메시지가 떴다.
if(((fahr%3)==0)||(fahr%10)==3||((int)(fahr/10)==3)에서 끝부분에 빠뜨린 )하
|
- 페이지 3페이지
- 가격 800원
- 등록일 2003.11.07
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
------");
for(j=0; j < n; j++)
{
printf("\n%2d)] ",j+1);
for(i=0; i < n; i++)
printf("%4d",m[i][j]);
}
printf("\n---+---------------------------------------------------------------------------");
}
|
- 페이지 2페이지
- 가격 800원
- 등록일 2003.10.01
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
lude <stdio.h> //표준 입출력 함수 scanf, printf사용
#define PI 3.14 //상수를 정의하기 위한 매크로
int main(void)
{
float radius, //반지름
perimeter, //원주
area; //면적
//원의 반지름을 입력받는다.
printf("Enter the radius of a circle>");
scanf("%f", &radius);
//원의
|
- 페이지 3페이지
- 가격 800원
- 등록일 2003.11.03
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
t1-t);
if (lastk%500 == 0) printf("\n");
}
flower() {
printf(" *************************************\n");
printf(" * PI *\n");
printf(" *************************************\n\n");
printf(" 3.");
}
|
- 페이지 2페이지
- 가격 700원
- 등록일 2002.09.22
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
k;
case 6:
printf("수학교육과 ");
break;
case 7:
printf("과학교육과 ");
break;
case 8:
printf("컴퓨터교육과 ");
break;
default:
printf("\n...잘못 입력 하였습니다. \n");
}
printf("대학은 ");
switch (college) {
/* collage 값에 따라 지정된 문자열을 출력한다. */
case 0:
printf(
|
- 페이지 5페이지
- 가격 800원
- 등록일 2010.01.14
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
ATmega 128의 특징
PWM
|
- 페이지 21페이지
- 가격 3,000원
- 등록일 2010.10.12
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
/*
CreateQueueDll 함수
함 수 명 : CreateQueueDll
호출 함수 :
전달 인수 : 없음
반 환 값 : 없음
*/
void CreateQueueDll(QueueDll *pSelf)
{
pSelf ->list = (DLL *) malloc(sizeof(DLL)); /* DLL형으로 memory 할당 */
CreateDll(pSelf ->list);
pSelf ->front = pSelf ->
|
- 페이지 30페이지
- 가격 3,000원
- 등록일 2005.01.04
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|