|
--------\");
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주 판매 이력 없음
|
|
기본적인 project에서 추가된 클래스는 다음 클래스입니다.
- CMyBitmap
- CControlDialog
기본적인 project에서 수정된 부분은 다음 클래스 입니다.
- CMy03322View
추가된 두개의 클래스는 다음과 같은 역할을 수행합니다.
CMyBitmap은 리소스에 있는 비
|
- 페이지 13페이지
- 가격 2,000원
- 등록일 2005.11.11
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
<< \"Three Strike~!! 추카드립니당..^^\" << endl;
exit (1);
}
strike=0;
ball=0;
i++;
}
cout << \"9번의 기회를 모두 놓치셨네요.. 정해진 숫자는 \";
for (i=0; i < 3; i++)
cout << baseballNum[i];
cout << \"입니다.\"<< endl;
}
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2006.01.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
/*
CreateDll 함수
함 수 명 : CreateDll
호출 함수 :
전달 인수 : 없음
반 환 값 : 없음
*/
void CreateDll(DLL *pSelf)
{
pSelf ->head = (NODE *)malloc(sizeof(NODE));
pSelf ->tail = (NODE *)malloc(sizeof(NODE));
pSelf ->head ->llink = pSelf ->head;
pSelf ->t
|
- 페이지 24페이지
- 가격 3,000원
- 등록일 2005.01.04
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
/*
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주 판매 이력 없음
|
|
k,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주 판매 이력 없음
|
|
nclude <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주 판매 이력 없음
|
|
#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주 판매 이력 없음
|
|
ahr=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주 판매 이력 없음
|