|
test.cpp
#include <stdio.h>
#include <conio.h>
#include <windows.h>
#include <mmsystem.h>
#pragma comment(lib, "winmm.lib")
typedef struct {
int instrument; // 악기
int key; // 키(건반위치 0~7)
int
|
- 페이지 23페이지
- 가격 10,000원
- 등록일 2014.08.08
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <string.h>
#include <stdio.h>
int array[20][25];
int input_x=0, input_y=0;
char player1_id[10], player2_id[10];
int check_the_winner(int k);
void input_turn(void);
void print_board(void);
char id_input(char *c, char *d);
void display_rule
|
- 페이지 2페이지
- 가격 500원
- 등록일 2013.04.19
- 파일종류 텍스트(txt)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
enu {PLUS, MINUS, STAR, DIV, NUMBER, LP, RP}token;
typedef struct value{
int tag;
union {
int val_int;
double val_double;
};
}value;
value kk;
void get_next_token();
value expr();
value term();
value f
|
- 페이지 6페이지
- 가격 2,500원
- 등록일 2010.09.03
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
티켓의 예약용으로 VRML을 이용할 수 있을 것이라는 아이디어도 있다.
4. CAD데이터 전송
떨어진 장소에서 설계한 상품을 3차원으로 발주자에게 사전에 보이는 것이 가능하게 되고, 커뮤니케이션 부족에서 오는 의사소통을 줄일 수 있다. 특히
|
- 페이지 6페이지
- 가격 5,000원
- 등록일 2011.06.22
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define random(num) ( (unsigned int)rand()%num )
int input ( int * );
int main()
{
int source[3];
int inputnum[3];
int realnum = 0, i = 0, j = 0, ball = 0, strike = 0;
srand((unsigned)time(NU
|
- 페이지 3페이지
- 가격 300원
- 등록일 2010.06.08
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
< "b점의 y좌표를 입력하세요 : ";
cin >> x.y[1];
while(x.y[0]<x.x[0] || x.y[1]!=x.x[1]){
while (x.y[0]<x.x[0]){
cout << "b점의 x좌표는 a점의 x좌표보다 작으면 안됩니다." << endl;
cout << "다시 입력하세요 : ";
cin >> x.y[0];
cout << "////////
|
- 페이지 6페이지
- 가격 1,500원
- 등록일 2009.04.10
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
---------------" << "\n\n";
A ja2(100,200,300);
cout << "◎ class A의 세 변수 " <<"\n";
cout << " a = " << ja2.a <<"\n";
cout << " b = " << ja2.b <<"\n";
cout << " c = " << ja2.c <<"\n";
cout << "---------------------------
|
- 페이지 7페이지
- 가격 1,500원
- 등록일 2009.04.10
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
class에 정의된 member method 중 static이라는 키워드가 붙어있는 method 는 class 이름으로 호출
class에 정의된 member method 중 static이라는 키워드가 붙지 않은 method는 class의 instance로 호출
예
System.Threading.Thread.Sleep(100000);
class MethodTest{
public static i
|
- 페이지 11페이지
- 가격 500원
- 등록일 2008.04.01
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
MTS는 n-tier 환경의 Enterprise 레벨에 맞게 설계된 Application Server
Transaction
Object Pooling
Just-In-Time(JIT) object activation
Security
COM+는 Windows2000에서 MTS를 운영체제에 통합하면서 새로운 기능들을 추가
Event
Message Queuing
Component Load Balancing
일련의 처
|
- 페이지 13페이지
- 가격 300원
- 등록일 2008.04.01
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
조건문은 반드시 true/false 를 비교해야 한다.
C++ 과는 다르게 0 으로 false를 대신할 수 없고, 1이상의 값이 true를 대신할 수 없다.
// 조건이 참일 때 여러 명령 실행
if (age > 18) {
......
}
// 조건이 참과 거짓일 때ㅁ 명령이 달라짐
if (age &g
|
- 페이지 17페이지
- 가격 500원
- 등록일 2008.04.01
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|