|
Data 문
data vlist/clist/, vlist/clist/, ......
: 변수나 배열에 초기치를 부여
Rule)
1) declaration 뒤에, 실행문 앞에 위치
2) vlist의 개수 : clist의 개수 (1:1 대응)
3) vlist와 clist는 data type assignment를 따른다.
4) n번 반복할 경우 n*clist
5) vlist에 배열명을 쓰면 배
|
- 페이지 45페이지
- 가격 3,000원
- 등록일 2004.07.21
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
Data
//{{AFX_DATA(CKdlg)
enum { IDD = IDD_K_DLG };
double m_nK;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CKdlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX);// DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated
|
- 페이지 18페이지
- 가격 2,000원
- 등록일 2004.09.23
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
data); int deQ(); void printQ();
①(★★)
int queue[10];
int front=0,rear=0;
int main()
{
enQ(10);
enQ(20);
enQ(30);
printQ();
printf("queue에서 가져온 값=%d\n",deQ());
printQ();
}
②(★★)
void enQ(int data)
{
queue[rear++]=data;
}
③(★★)
int deQ()
{
return queue[front++];
}
④(★★)
void printQ()
|
- 페이지 6페이지
- 가격 5,000원
- 등록일 2010.06.11
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
data, char *string, int length ) //정수를 스트링으로 변환하는 함수
{
char buffer[ 20 ] = "";
char temp_buf[ 20 ] = "";
int minus = 0;
int size = 0;
int i = 0 ;
int temp;
size = strlen( string );
for ( i = 0 ; i < size ; i++ )
string[ i ] = '\0';
if ( data < 0 ) //음수인 경우 2의 보수를 취
|
- 페이지 30페이지
- 가격 3,000원
- 등록일 2006.05.14
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
0].name);
for(i=1;i<num;i++)
{
if(a[i].avr > temp)
{
temp = a[i].avr;
strcpy(name, a[i].name);
}
}
printf("성적이 가장 좋은 학생은 %s \n",name);
}
void avg_jum(Data a[num])
{
int i;
int sum_kor = 0;
int sum_eng = 0;
int sum_mat = 0;
double avg_kor;
double avg_eng;
double avg_mat;
for(i=0;i<
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2009.06.01
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
28 Number of extensions: 0
Size of local data area(s): 236 Number of warnings: 0
Size of global data area: 39204 Number of errors: 0
Object/Dynamic bytes free: 332140/46568 Statements Executed: 358 없음
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2004.11.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
2 Number of extensions: 0
Size of local data area(s): 131 Number of warnings: 0
Size of global data area: 0 Number of errors: 0
Object/Dynamic bytes free: 372304/46570 Statements Executed: 10000005 I.면적을 이용한 파이구하기
II.DOUBLE PRECISION을 이용한 파이구하기
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2004.11.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
: 412 Number of extensions: 0
Size of local data area(s): 236 Number of warnings: 0
Size of global data area: 40 Number of errors: 0
Object/Dynamic bytes free: 371752/46568 Statements Executed: 182 없음
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2004.11.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
: 460 Number of extensions: 0
Size of local data area(s): 174 Number of warnings: 0
Size of global data area: 16 Number of errors: 0
Object/Dynamic bytes free: 371824/46570 Statements Executed: 343 없음
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2004.11.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
class Set
{
private:
int arySize; //maximum size of a set
int currentSize; //current size of a set
int* data; //pointer for data
string set_name; //name of a set
public:
Set();
Set(int asize, string setName);
Set(const Set& copycon);
~Set(){}
|
- 페이지 1페이지
- 가격 4,000원
- 등록일 2010.11.09
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|