|
560], max, min, x_term;
initgraph(&gd, &gm, \"..\\\\bgi\");
setcolor(DARKGRAY);
for(i=0; i<6; i++)
line(50,30+i*80,610,30+i*80);
for(i=0; i<9; i++)
line(50+i*70,30,50+i*70,430);
setcolor(WHITE);
settextstyle(TRIPLEX_FONT, HORIZ_DIR, 1);
outtextxy(5,340,\"0.1\");
outtextxy(5,260,\"0.2\");
outte
|
- 페이지 6페이지
- 가격 1,000원
- 등록일 2005.11.24
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
*str = \"this is i a test\";
int temp=0, i=0, j=0;
while(str[j] != \'\\0\')
{
if(str[j] == a[i])
{
while(a[i] != \'\\0\')
{
if(str[j+i] != a[i])
{
temp = 0;
break;
}
else
temp = 1;
i++;
}
}
if(temp == 1)
printf(\"%c\", str[j]);
j++;
}
if(temp == 0)
printf(\"찾을 수 없습니다\");
printf(\"\\n\");
}&nb
|
- 페이지 5페이지
- 가격 800원
- 등록일 2008.08.21
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
LINKED_LIST.CPP
// *************
// *LINKED_LIST*
// *************
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct LIST {
char name[20];
char phone[20];
struct LIST *prev;
struct LIST *next;
};
str
|
- 페이지 14페이지
- 가격 7,900원
- 등록일 2013.12.16
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
STACK.CPP
// *********
// * STACK *
// *********
//배열로 저장공간을 잡고 top이라는 포인터로 입력 받아서 array[]에 직접 저장하는 방식으로 구현
#include <stdio.h>
#include <stdlib.h>
void Input(); //데이타
|
- 페이지 13페이지
- 가격 7,900원
- 등록일 2013.12.16
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|